Scripted almost all of lower limsa.

This commit is contained in:
Filip Maj 2016-06-13 21:26:19 -04:00
parent 65389e3362
commit d1c8987091
161 changed files with 293 additions and 911 deletions

View file

@ -0,0 +1,21 @@
require("/quests/man/man0u0")
function init(npc)
return "/Chara/Npc/Populace/PopulaceStandard", false, false, false, false, false, npc.getActorClassId(), false, false, 0, 1, "TEST";
end
function onEventStarted(player, npc, triggerName)
man0u0Quest = getStaticActor("Man0u0");
if (triggerName == "talkDefault") then
player:runEventFunction("delegateEvent", player, man0u0Quest, "processEvent000_9", nil, nil, nil);
else
player:endEvent();
end
end
function onEventUpdate(player, npc)
player:endEvent();
end