summaryrefslogtreecommitdiff
path: root/npc/018-2-2
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-12-19 19:59:09 -0200
committerJesusaves <cpntb1@ymail.com>2018-12-19 19:59:09 -0200
commit1dd036448df9c18d9402c61a4ce1b535c07b7b89 (patch)
tree3a9ce73f75ba4e342fbe16ba602f9fc825b551a7 /npc/018-2-2
parentf42cc1e6d082362c5e9b5e8ad10d33344264cf65 (diff)
downloadserverdata-1dd036448df9c18d9402c61a4ce1b535c07b7b89.tar.gz
serverdata-1dd036448df9c18d9402c61a4ce1b535c07b7b89.tar.bz2
serverdata-1dd036448df9c18d9402c61a4ce1b535c07b7b89.tar.xz
serverdata-1dd036448df9c18d9402c61a4ce1b535c07b7b89.zip
[skip ci] it fails
Diffstat (limited to 'npc/018-2-2')
-rw-r--r--npc/018-2-2/main.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/npc/018-2-2/main.txt b/npc/018-2-2/main.txt
index 7cbee0426..7df95edb5 100644
--- a/npc/018-2-2/main.txt
+++ b/npc/018-2-2/main.txt
@@ -261,11 +261,14 @@ OnInstanceInit:
//if (instance_mapname("0018-2-2"))
// HH_NOVICE
if (instance_id() == $@HHMD_INSTID1) {
+ debugmes "+ Init Novice";
freeloop(true);
for (.@i=0;.@i<getarraysize(.Novice_Mobs);.@i++) {
areamonster "018-2-2@No", 20, 20, 220, 220, strmobinfo(1, .Novice_Mobs[.@i]), .Novice_Mobs[.@i], .Novice_Ammo[.@i], "#HH_CONTROLLER01::OnNovice"+.@i;
}
freeloop(false);
+ debugmes "- Init Novice";
+ end;
}
// HH_INTERMEDIARY
if (instance_id() == $@HHMD_INSTID2) {
@@ -276,6 +279,7 @@ OnInstanceInit:
}
freeloop(false);
debugmes "- Init Intermed";
+ end;
}
// HH_ADVANCED
if (instance_id() == $@HHMD_INSTID4) {
@@ -286,14 +290,18 @@ OnInstanceInit:
}
freeloop(false);
debugmes "- Init Advanced";
+ end;
}
// HH_EXPERT
if (instance_id() == $@HHMD_INSTID8) {
+ debugmes "+ Init Expert";
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;
}
freeloop(false);
+ debugmes "- Init Expert";
+ end;
}
// TODO: We still need the main logic for this. I mean, what is the objective on each floor of Master Dungeon?