mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
13 lines
317 B
Lua
13 lines
317 B
Lua
require ("global")
|
|
|
|
function onEventStarted(player, npc, triggerName)
|
|
man0l1Quest = player:GetQuest("Man0l1");
|
|
|
|
if (man0l1Quest ~= nil) then
|
|
if (triggerName == "talkDefault") then
|
|
callClientFunction(player, "delegateEvent", player, man0l1Quest, "processEvent010_8");
|
|
player:EndEvent();
|
|
end
|
|
end
|
|
|
|
end |