mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
15 lines
365 B
Lua
15 lines
365 B
Lua
require ("global")
|
|
|
|
function onEventStarted(player, npc)
|
|
defaultFst = GetStaticActor("DftFst");
|
|
choice = callClientFunction(player, "delegateEvent", player, defaultFst, "defaultTalkWithInn_Desk", nil, nil, nil);
|
|
|
|
if (choice == 1) then
|
|
GetWorldManager():DoZoneChange(player, 13);
|
|
elseif (choice == 2) then
|
|
--Do Set Homepoint
|
|
end
|
|
|
|
player:EndEvent();
|
|
|
|
end |