summaryrefslogtreecommitdiff
path: root/npc/001-13/main.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/001-13/main.txt')
-rw-r--r--npc/001-13/main.txt10
1 files changed, 8 insertions, 2 deletions
diff --git a/npc/001-13/main.txt b/npc/001-13/main.txt
index 619c263f7..b2921aa18 100644
--- a/npc/001-13/main.txt
+++ b/npc/001-13/main.txt
@@ -79,11 +79,12 @@ function script FYRaid_Select {
return;
}
// Attach map
+ // TODO: Different scenarios: Block Castle, Sewer, Concrete Dungeon, Crypt, Desert Castle, Mountain, Snowland, Lake Region, Ukar Shrine, Woodland...
+ .@lv = $FYRAID_LV[.@i];
.@mp$="fyrb@"+getcharid(0);
- instance_attachmap("001-13", .@inst, false, .@mp$);
+ instance_attachmap(sprintf("001-13-%d", (.@lv % 3)), .@inst, false, .@mp$);
// Recreate the boss
- .@lv = $FYRAID_LV[.@i];
.@mob=monster(.@mp$, 47, 33, $RAIDING_BOSS$, WanderingShadow, 1, "sBossRaid::OnBossDie");
setunitdata(.@mob, UDT_LEVEL, min(.@lv * 7, 200));
setunitdata(.@mob, UDT_STR, .@lv * 4);
@@ -117,6 +118,7 @@ function script FYRaid_Select {
addtimer 40000, "sBossRaid::OnPump";
dispbottom l("Time left: %s", FuzzyTime(@tm));
closeclientdialog;
+ // TODO: Spawn an auxiliar every 10 levels
return;
}
@@ -226,3 +228,7 @@ OnClose:
}
001-13 mapflag zone MMO
+001-13-0 mapflag zone MMO
+001-13-1 mapflag zone MMO
+001-13-2 mapflag zone MMO
+