fixed method casing in lua

This commit is contained in:
Tahir Akhlaq 2016-06-15 03:41:23 +01:00
parent ba13d5798d
commit 884a26dc52
368 changed files with 1121 additions and 1121 deletions

View file

@ -4,25 +4,25 @@ end
function onEventStarted(player, npc)
isNew = false;
player:runEventFunction("eventTalkStep1", isNew);
player:RunEventFunction("eventTalkStep1", isNew);
end
function onEventUpdate(player, npc, step, menuOptionSelected, lsName, lsCrest)
if (menuOptionSelected == nil) then
player:endEvent();
player:EndEvent();
return;
end
isNew = false;
if (menuOptionSelected == 1) then
player:runEventFunction("eventTalkStep2", isNew);
player:RunEventFunction("eventTalkStep2", isNew);
elseif (menuOptionSelected == 10) then
player:endEvent();
player:EndEvent();
return;
elseif (menuOptionSelected == 3) then
--createLinkshell
player:runEventFunction("eventTalkStepMakeupDone", isNew);
player:RunEventFunction("eventTalkStepMakeupDone", isNew);
end
end