Fixed syntax error in tutorial script. Finished fleshing out the opening script and related scripts for Limsa.

This commit is contained in:
Filip Maj 2017-03-19 11:40:41 -04:00
parent 77e0639410
commit 7b205c7b9b
6 changed files with 53 additions and 50 deletions

View file

@ -18,12 +18,12 @@ end
function onEventStarted(player, actor, triggerName)
quest = GetStaticActor("Man0g0");
quest = player:GetQuest("Man0g0");
callClientFunction(player, "delegateEvent", player, quest, "processTtrBtl001", nil, nil, nil);
callClientFunction(player, "delegateEvent", player, quest, "processEvent010_1", nil, nil, nil);
player:ChangeMusic(7);
callClientFunction(player, "delegateEvent", player, quest, "processEvent020_1", nil, nil, nil);
GetWorldManager():DoZoneChange(player, 1);
player:EndEvent();
--sendDataPacket: Success
--sendDataPacket: CloseWidget
--IF DoW:
@ -40,8 +40,11 @@ function onEventStarted(player, actor, triggerName)
--IF DEAD
--sendDataPacket: Attention
quest:NextPhase(10);
player:EndEvent();
GetWorldManager():DoZoneChange(player, 155, "PrivateAreaMasterPast", 1, 15, 175.38, -1.21, -1156.51, -2.1);
end
function onUpdate()