diff options
author | Jesusaves <cpntb1@ymail.com> | 2018-12-19 19:45:08 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2018-12-19 19:45:08 -0200 |
commit | a9c85d6984a280d09255a958201e900e98db3702 (patch) | |
tree | 92335a87f7876db39091c877b25d9efee7f775fb /npc/018-2-2/main.txt | |
parent | dd6abb2a59924160e01193b282d87ba9db3efbfe (diff) | |
download | serverdata-a9c85d6984a280d09255a958201e900e98db3702.tar.gz serverdata-a9c85d6984a280d09255a958201e900e98db3702.tar.bz2 serverdata-a9c85d6984a280d09255a958201e900e98db3702.tar.xz serverdata-a9c85d6984a280d09255a958201e900e98db3702.zip |
[skip ci] fix instance id bugs on HH
Diffstat (limited to 'npc/018-2-2/main.txt')
-rw-r--r-- | npc/018-2-2/main.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/018-2-2/main.txt b/npc/018-2-2/main.txt index cabeaeabc..dc5832401 100644 --- a/npc/018-2-2/main.txt +++ b/npc/018-2-2/main.txt @@ -272,7 +272,7 @@ OnInstanceInit: freeloop(false); } // HH_ADVANCED - if (instance_id() == $@HHMD_INSTID2) { + if (instance_id() == $@HHMD_INSTID4) { freeloop(true); for (.@i=0;.@i<getarraysize(.Advanc_Mobs);.@i++) { areamonster "018-2-2@Ad", 20, 20, 220, 220, strmobinfo(1, .Advanc_Mobs[.@i]), .Advanc_Mobs[.@i], .Advanc_Ammo[.@i], "#HH_CONTROLLER01::OnAdvanc"+.@i; @@ -280,7 +280,7 @@ OnInstanceInit: freeloop(false); } // HH_EXPERT - if (instance_id() == $@HHMD_INSTID2) { + if (instance_id() == $@HHMD_INSTID8) { freeloop(true); for (.@i=0;.@i<getarraysize(.Expert_Mobs);.@i++) { areamonster "018-2-3@Ex", 20, 20, 220, 220, strmobinfo(1, .Expert_Mobs[.@i]), .Expert_Mobs[.@i], .Expert_Ammo[.@i], "#HH_CONTROLLER01::OnExpert"+.@i; |