diff options
author | Haru <haru@dotalux.com> | 2013-11-10 04:28:03 +0100 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2013-11-10 04:31:28 +0100 |
commit | b4f1b3b5c5c009ed4f7635c5349ea97c80c08c25 (patch) | |
tree | cbd305d3896bdc9f498ed9eb72836dc7b6c32b99 /npc/instances | |
parent | c9b63614070f7fce81c88cd60e5edad5a7730df0 (diff) | |
download | hercules-b4f1b3b5c5c009ed4f7635c5349ea97c80c08c25.tar.gz hercules-b4f1b3b5c5c009ed4f7635c5349ea97c80c08c25.tar.bz2 hercules-b4f1b3b5c5c009ed4f7635c5349ea97c80c08c25.tar.xz hercules-b4f1b3b5c5c009ed4f7635c5349ea97c80c08c25.zip |
Follow-up to 857bdc4f98be6cd1e185a24565d6b6b54752b9b4
- Consolidated case in variables, labels, constants.
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'npc/instances')
-rw-r--r-- | npc/instances/NydhoggsNest.txt | 2 | ||||
-rw-r--r-- | npc/instances/SealedShrine.txt | 12 |
2 files changed, 7 insertions, 7 deletions
diff --git a/npc/instances/NydhoggsNest.txt b/npc/instances/NydhoggsNest.txt index 82e0b7a70..9ccdade10 100644 --- a/npc/instances/NydhoggsNest.txt +++ b/npc/instances/NydhoggsNest.txt @@ -1865,7 +1865,7 @@ OnEnable: set .@map$, instance_mapname("2@nyd"); monster .@map$,199,327,"Nidhoggur's Shadow",2022,1,instance_npcname("nyd_2f_boss_enter_call")+"::OnMyMobDead"; mapannounce .@map$, "Nidhoggur's Shadow : I will devour all of you... you and the World Tree Yggdrasil.",bc_map,"0x00ff99"; - //donpcevent instance_npcname("nyd_2f_boss_enter_call")+"::Ongo"; + //donpcevent instance_npcname("nyd_2f_boss_enter_call")+"::OnGo"; initnpctimer; end; diff --git a/npc/instances/SealedShrine.txt b/npc/instances/SealedShrine.txt index c565b182c..ffa2d979d 100644 --- a/npc/instances/SealedShrine.txt +++ b/npc/instances/SealedShrine.txt @@ -1313,7 +1313,7 @@ OnInstanceInit: OnEnable: enablenpc instance_npcname("2f_callmon_pattern_c"); initnpctimer; - donpcevent instance_npcname("2f_callmon_pattern_c")+"::Ongo"; + donpcevent instance_npcname("2f_callmon_pattern_c")+"::OnGo"; end; OnDisable: @@ -1321,7 +1321,7 @@ OnDisable: disablenpc instance_npcname("2f_callmon_pattern_c"); end; -Ongo: +OnGo: donpcevent instance_npcname("2f_callmon_pattern")+"::OnEnable"; end; @@ -1350,7 +1350,7 @@ OnTimer300000: enablenpc instance_npcname("slave_down"); enablenpc instance_npcname("slave_left"); enablenpc instance_npcname("slave_right"); - donpcevent instance_npcname("2f_callmon_pattern_c")+"::Ongo"; + donpcevent instance_npcname("2f_callmon_pattern_c")+"::OnGo"; end; } @@ -1362,10 +1362,10 @@ OnInstanceInit: OnEnable: enablenpc instance_npcname("ins_2f_hero_pattern_c"); initnpctimer; - donpcevent instance_npcname("ins_2f_hero_pattern_c")+"::Ongo"; + donpcevent instance_npcname("ins_2f_hero_pattern_c")+"::OnGo"; end; -Ongo: +OnGo: donpcevent instance_npcname("ins_2f_hero_pattern")+"::OnEnable"; end; @@ -1448,7 +1448,7 @@ OnTimer70000: enablenpc instance_npcname("Magical Seal#10"); } stopnpctimer; - donpcevent instance_npcname("ins_2f_hero_pattern_c")+"::Ongo"; + donpcevent instance_npcname("ins_2f_hero_pattern_c")+"::OnGo"; end; } |