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,14 @@
require ("global")
function onEventStarted(player, npc, triggerName)
man0g1Quest = player:GetQuest("Man0g0");
if (man0g1Quest ~= nil) then
if (triggerName == "talkDefault") then
callClientFunction(player, "delegateEvent", player, man0g1Quest, "processEvent020_6");
end
end
player:EndEvent();
end