mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
25 lines
333 B
Lua
25 lines
333 B
Lua
--[[
|
|
|
|
PopulaceAchievement Script
|
|
|
|
Functions:
|
|
|
|
eventNoGC() -
|
|
eventUnlock(sheetId) -
|
|
eventReward(?, bool, ?, bool) -
|
|
defTalk() - Blurb
|
|
|
|
--]]
|
|
|
|
require ("global")
|
|
|
|
function init(npc)
|
|
return false, false, 0, 0;
|
|
end
|
|
|
|
function onEventStarted(player, npc, triggerName)
|
|
|
|
callClientFunction(player, "defTalk");
|
|
|
|
player:EndEvent();
|
|
end |