Added scripts for NPCs in the Limsa echo instance and Gridania opening post-battle instance.

This commit is contained in:
Filip Maj 2017-03-19 11:41:29 -04:00
parent 7b205c7b9b
commit 4f339709d5
11 changed files with 139 additions and 0 deletions

View file

@ -0,0 +1,12 @@
function init(npc)
return false, false, 0, 0;
end
function onEventStarted(player, npc, triggerName)
if (triggerName == "caution") then
worldMaster = GetWorldMaster();
player:SendGameMessage(player, worldMaster, 34109, 0x20);
elseif (triggerName == "exit") then
end
player:EndEvent();
end