All the script changes done to get the openings working.

This commit is contained in:
Filip Maj
2016-04-18 13:33:31 -04:00
parent 3d5fa45730
commit 53064a7345
50 changed files with 764 additions and 87 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_13", nil, nil, nil);
else
player:endEvent();
end
end
function onEventUpdate(player, npc)
player:endEvent();
end