mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
15 lines
359 B
Lua
15 lines
359 B
Lua
function onEventStarted(player, npc)
|
|
defaultWil = GetStaticActor("DftWil");
|
|
player:RunEventFunction("delegateEvent", player, defaultWil, "defaultTalkWithInn_Desk_2", nil, nil, nil); --BTN
|
|
|
|
end
|
|
|
|
function onEventUpdate(player, npc, blah, menuSelect)
|
|
|
|
if (menuSelect == 1) then
|
|
GetWorldManager():DoZoneChange(player, 11);
|
|
end
|
|
|
|
player:EndEvent();
|
|
|
|
end |