mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-23 21:27:46 +00:00
15 lines
349 B
Lua
15 lines
349 B
Lua
![]() |
function onEventStarted(player, npc)
|
||
|
defaultFst = getStaticActor("DftFst");
|
||
|
player:runEventFunction("delegateEvent", player, defaultFst, "defaultTalkWithInn_Desk", nil, nil, nil);
|
||
|
|
||
|
end
|
||
|
|
||
|
function onEventUpdate(player, npc, blah, menuSelect)
|
||
|
|
||
|
if (menuSelect == 1) then
|
||
|
getWorldManager():DoZoneChange(player, 13);
|
||
|
end
|
||
|
|
||
|
player:endEvent();
|
||
|
|
||
|
end
|