mirror of
				https://bitbucket.org/Ioncannon/project-meteor-server.git
				synced 2025-05-20 08:26:59 -04:00 
			
		
		
		
	fixed method casing in lua
This commit is contained in:
		| @@ -1,5 +1,5 @@ | ||||
|  | ||||
| function onEventStarted(player, npc) | ||||
| 	defaultSea = getStaticActor("DftSea"); | ||||
| 	player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithAergwynt_001", nil, nil, nil); | ||||
| 	defaultSea = GetStaticActor("DftSea"); | ||||
| 	player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithAergwynt_001", nil, nil, nil); | ||||
| end | ||||
| @@ -1,5 +1,5 @@ | ||||
|  | ||||
| function onEventStarted(player, npc) | ||||
| 	defaultSea = getStaticActor("DftSea"); | ||||
| 	player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithBaderon_001", nil, nil, nil); | ||||
| 	defaultSea = GetStaticActor("DftSea"); | ||||
| 	player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithBaderon_001", nil, nil, nil); | ||||
| end | ||||
| @@ -1,7 +1,7 @@ | ||||
|  | ||||
| function onEventStarted(player, npc) | ||||
| 	defaultSea = getStaticActor("DftSea"); | ||||
| 	player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithChantine_001", nil, nil, nil); | ||||
| 	--player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithChantine_002", nil, nil, nil); --LNC | ||||
| 	--player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithChantine_003", nil, nil, nil); --LNC NO GUILD | ||||
| 	defaultSea = GetStaticActor("DftSea"); | ||||
| 	player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithChantine_001", nil, nil, nil); | ||||
| 	--player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithChantine_002", nil, nil, nil); --LNC | ||||
| 	--player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithChantine_003", nil, nil, nil); --LNC NO GUILD | ||||
| end | ||||
| @@ -1,7 +1,7 @@ | ||||
|  | ||||
| function onEventStarted(player, npc) | ||||
| 	defaultSea = getStaticActor("DftSea"); | ||||
| 	player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithEstrilda_001", nil, nil, nil); --DEFAULT | ||||
| 	--player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithEstrilda_002", nil, nil, nil); --IF ARCHER | ||||
| 	--player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithEstrilda_003", nil, nil, nil); --IF ARCHER | ||||
| 	defaultSea = GetStaticActor("DftSea"); | ||||
| 	player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithEstrilda_001", nil, nil, nil); --DEFAULT | ||||
| 	--player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithEstrilda_002", nil, nil, nil); --IF ARCHER | ||||
| 	--player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithEstrilda_003", nil, nil, nil); --IF ARCHER | ||||
| end | ||||
| @@ -1,7 +1,7 @@ | ||||
|  | ||||
| function onEventStarted(player, npc) | ||||
| 	defaultSea = getStaticActor("DftSea"); | ||||
| 	player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithFrithuric_001", nil, nil, nil); | ||||
| 	--player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithFrithuric_002", nil, nil, nil); --LTW | ||||
| 	--player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithFrithuric_003", nil, nil, nil); --LTW NO GUILD | ||||
| 	defaultSea = GetStaticActor("DftSea"); | ||||
| 	player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithFrithuric_001", nil, nil, nil); | ||||
| 	--player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithFrithuric_002", nil, nil, nil); --LTW | ||||
| 	--player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithFrithuric_003", nil, nil, nil); --LTW NO GUILD | ||||
| end | ||||
| @@ -1,5 +1,5 @@ | ||||
|  | ||||
| function onEventStarted(player, npc) | ||||
| 	defaultSea = getStaticActor("DftSea"); | ||||
| 	player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithFzhumii_001", nil, nil, nil); | ||||
| 	defaultSea = GetStaticActor("DftSea"); | ||||
| 	player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithFzhumii_001", nil, nil, nil); | ||||
| end | ||||
| @@ -1,7 +1,7 @@ | ||||
|  | ||||
| function onEventStarted(player, npc) | ||||
| 	defaultSea = getStaticActor("DftSea"); | ||||
| 	player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithGigirya_001", nil, nil, nil); | ||||
| 	--player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithGigirya_002", nil, nil, nil);     --THM | ||||
| 	--player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithGigirya_003", nil, nil, nil);   --THM NO GUILD | ||||
| 	defaultSea = GetStaticActor("DftSea"); | ||||
| 	player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithGigirya_001", nil, nil, nil); | ||||
| 	--player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithGigirya_002", nil, nil, nil);     --THM | ||||
| 	--player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithGigirya_003", nil, nil, nil);   --THM NO GUILD | ||||
| end | ||||
| @@ -1,5 +1,5 @@ | ||||
|  | ||||
| function onEventStarted(player, npc) | ||||
| 	defaultSea = getStaticActor("DftSea"); | ||||
| 	player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithGnibnpha_001", nil, nil, nil); | ||||
| 	defaultSea = GetStaticActor("DftSea"); | ||||
| 	player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithGnibnpha_001", nil, nil, nil); | ||||
| end | ||||
| @@ -1,7 +1,7 @@ | ||||
|  | ||||
| function onEventStarted(player, npc) | ||||
| 	defaultSea = getStaticActor("DftSea"); | ||||
| 	player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithGregory_001", nil, nil, nil); | ||||
| 	--player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithGregory_002", nil, nil, nil); --CNJ | ||||
| 	--player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithGregory_003", nil, nil, nil); --CNJ NO GUILD | ||||
| 	defaultSea = GetStaticActor("DftSea"); | ||||
| 	player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithGregory_001", nil, nil, nil); | ||||
| 	--player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithGregory_002", nil, nil, nil); --CNJ | ||||
| 	--player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithGregory_003", nil, nil, nil); --CNJ NO GUILD | ||||
| end | ||||
| @@ -1,5 +1,5 @@ | ||||
|  | ||||
| function onEventStarted(player, npc) | ||||
| 	defaultSea = getStaticActor("DftSea"); | ||||
| 	player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithIsleen_001", nil, nil, nil); | ||||
| 	defaultSea = GetStaticActor("DftSea"); | ||||
| 	player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithIsleen_001", nil, nil, nil); | ||||
| end | ||||
| @@ -1,5 +1,5 @@ | ||||
|  | ||||
| function onEventStarted(player, npc) | ||||
| 	defaultSea = getStaticActor("DftSea"); | ||||
| 	player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithIsleen_001", nil, nil, nil); | ||||
| 	defaultSea = GetStaticActor("DftSea"); | ||||
| 	player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithIsleen_001", nil, nil, nil); | ||||
| end | ||||
| @@ -1,7 +1,7 @@ | ||||
|  | ||||
| function onEventStarted(player, npc) | ||||
| 	defaultSea = getStaticActor("DftSea"); | ||||
| 	player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithJosias_001", nil, nil, nil); | ||||
| 	--player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithJosias_002", nil, nil, nil);  --CRP | ||||
| 	--player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithJosias_003", nil, nil, nil);  --CRP NO GUILD | ||||
| 	defaultSea = GetStaticActor("DftSea"); | ||||
| 	player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithJosias_001", nil, nil, nil); | ||||
| 	--player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithJosias_002", nil, nil, nil);  --CRP | ||||
| 	--player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithJosias_003", nil, nil, nil);  --CRP NO GUILD | ||||
| end | ||||
| @@ -1,7 +1,7 @@ | ||||
|  | ||||
| function onEventStarted(player, npc) | ||||
| 	defaultSea = getStaticActor("DftSea"); | ||||
| 	player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithKakamehi_001", nil, nil, nil); | ||||
| 	--player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithKakamehi_002", nil, nil, nil); --IF ALC | ||||
| 	--player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithKakamehi_003", nil, nil, nil); --IF ALC | ||||
| 	defaultSea = GetStaticActor("DftSea"); | ||||
| 	player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithKakamehi_001", nil, nil, nil); | ||||
| 	--player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithKakamehi_002", nil, nil, nil); --IF ALC | ||||
| 	--player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithKakamehi_003", nil, nil, nil); --IF ALC | ||||
| end | ||||
| @@ -1,7 +1,7 @@ | ||||
|  | ||||
| function onEventStarted(player, npc) | ||||
| 	defaultSea = getStaticActor("DftSea"); | ||||
| 	player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithKokoto_001", nil, nil, nil); | ||||
| 	--player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithKokoto_002", nil, nil, nil); --LNC | ||||
| 	--player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithKokoto_003", nil, nil, nil); --LNC NO GUILD | ||||
| 	defaultSea = GetStaticActor("DftSea"); | ||||
| 	player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithKokoto_001", nil, nil, nil); | ||||
| 	--player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithKokoto_002", nil, nil, nil); --LNC | ||||
| 	--player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithKokoto_003", nil, nil, nil); --LNC NO GUILD | ||||
| end | ||||
| @@ -1,5 +1,5 @@ | ||||
|  | ||||
| function onEventStarted(player, npc) | ||||
| 	defaultSea = getStaticActor("DftSea"); | ||||
| 	player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithLaniaitte_001", nil, nil, nil); | ||||
| 	defaultSea = GetStaticActor("DftSea"); | ||||
| 	player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithLaniaitte_001", nil, nil, nil); | ||||
| end | ||||
| @@ -1,7 +1,7 @@ | ||||
|  | ||||
| function onEventStarted(player, npc) | ||||
| 	defaultSea = getStaticActor("DftSea"); | ||||
| 	player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithLauda_001", nil, nil, nil); | ||||
| 	--player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithLauda_002", nil, nil, nil); --BTN | ||||
| 	--player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithLauda_003", nil, nil, nil); --BTN NO GUILD | ||||
| 	defaultSea = GetStaticActor("DftSea"); | ||||
| 	player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithLauda_001", nil, nil, nil); | ||||
| 	--player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithLauda_002", nil, nil, nil); --BTN | ||||
| 	--player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithLauda_003", nil, nil, nil); --BTN NO GUILD | ||||
| end | ||||
| @@ -1,7 +1,7 @@ | ||||
|  | ||||
| function onEventStarted(player, npc) | ||||
| 	defaultSea = getStaticActor("DftSea"); | ||||
| 	player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithMaunie_001", nil, nil, nil); | ||||
| 	--player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithMaunie_002", nil, nil, nil); --PUG | ||||
| 	--player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithMaunie_003", nil, nil, nil); --PUG NO GUILD | ||||
| 	defaultSea = GetStaticActor("DftSea"); | ||||
| 	player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithMaunie_001", nil, nil, nil); | ||||
| 	--player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithMaunie_002", nil, nil, nil); --PUG | ||||
| 	--player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithMaunie_003", nil, nil, nil); --PUG NO GUILD | ||||
| end | ||||
| @@ -1,15 +1,15 @@ | ||||
| function onEventStarted(player, npc) | ||||
| 	defaultSea = getStaticActor("DftSea"); | ||||
| 	player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithInn_Desk", nil, nil, nil); | ||||
| 	defaultSea = GetStaticActor("DftSea"); | ||||
| 	player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithInn_Desk", nil, nil, nil); | ||||
| 	 | ||||
| end | ||||
|  | ||||
| function onEventUpdate(player, npc, blah, menuSelect) | ||||
|  | ||||
| 	if (menuSelect == 1) then | ||||
| 		getWorldManager():DoZoneChange(player, 12); | ||||
| 		GetWorldManager():DoZoneChange(player, 12); | ||||
| 	end | ||||
| 	 | ||||
| 	player:endEvent(); | ||||
| 	player:EndEvent(); | ||||
| 	 | ||||
| end | ||||
| @@ -1,7 +1,7 @@ | ||||
|  | ||||
| function onEventStarted(player, npc) | ||||
| 	defaultSea = getStaticActor("DftSea"); | ||||
| 	player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithNanaka_001", nil, nil, nil); | ||||
| 	--player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithNanaka_002", nil, nil, nil); --GSM | ||||
| 	--player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithNanaka_003", nil, nil, nil); --GSM NO GUILD | ||||
| 	defaultSea = GetStaticActor("DftSea"); | ||||
| 	player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithNanaka_001", nil, nil, nil); | ||||
| 	--player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithNanaka_002", nil, nil, nil); --GSM | ||||
| 	--player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithNanaka_003", nil, nil, nil); --GSM NO GUILD | ||||
| end | ||||
| @@ -1,7 +1,7 @@ | ||||
|  | ||||
| function onEventStarted(player, npc) | ||||
| 	defaultSea = getStaticActor("DftSea"); | ||||
| 	player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithStephannot_001", nil, nil, nil); | ||||
| 	--player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithStephannot_002", nil, nil, nil); --MIN | ||||
| 	--player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithStephannot_003", nil, nil, nil); --MIN NO GUILD | ||||
| 	defaultSea = GetStaticActor("DftSea"); | ||||
| 	player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithStephannot_001", nil, nil, nil); | ||||
| 	--player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithStephannot_002", nil, nil, nil); --MIN | ||||
| 	--player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithStephannot_003", nil, nil, nil); --MIN NO GUILD | ||||
| end | ||||
| @@ -1,8 +1,8 @@ | ||||
|  | ||||
| function onEventStarted(player, npc) | ||||
| 	defaultSea = getStaticActor("DftSea"); | ||||
| 	player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithTirauland_001", nil, nil, nil); | ||||
| 	--player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithTirauland_002", nil, nil, nil); --LNC | ||||
| 	--player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithTirauland_003", nil, nil, nil); --LNC NO GUILD | ||||
| 	--player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithTirauland_010", nil, nil, nil); --NOT DOW/DOM | ||||
| 	defaultSea = GetStaticActor("DftSea"); | ||||
| 	player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithTirauland_001", nil, nil, nil); | ||||
| 	--player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithTirauland_002", nil, nil, nil); --LNC | ||||
| 	--player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithTirauland_003", nil, nil, nil); --LNC NO GUILD | ||||
| 	--player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithTirauland_010", nil, nil, nil); --NOT DOW/DOM | ||||
| end | ||||
| @@ -1,5 +1,5 @@ | ||||
|  | ||||
| function onEventStarted(player, npc) | ||||
| 	defaultSea = getStaticActor("DftSea"); | ||||
| 	player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithZanthael_001", nil, nil, nil); | ||||
| 	defaultSea = GetStaticActor("DftSea"); | ||||
| 	player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithZanthael_001", nil, nil, nil); | ||||
| end | ||||
| @@ -1,5 +1,5 @@ | ||||
|  | ||||
| function onEventStarted(player, npc) | ||||
| 	defaultSea = getStaticActor("DftSea"); | ||||
| 	player:runEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithZehrymm_001", nil, nil, nil); | ||||
| 	defaultSea = GetStaticActor("DftSea"); | ||||
| 	player:RunEventFunction("delegateEvent", player, defaultSea, "defaultTalkWithZehrymm_001", nil, nil, nil); | ||||
| end | ||||
		Reference in New Issue
	
	Block a user