mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-07-25 11:58:17 +02:00
Fixed syntax error in tutorial script. Finished fleshing out the opening script and related scripts for Limsa.
This commit is contained in:
parent
77e0639410
commit
7b205c7b9b
6 changed files with 53 additions and 50 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue