|
@@ -3,7 +3,7 @@
|
|
//===== By: ==================================================
|
|
//===== By: ==================================================
|
|
//= L0ne_W0lf
|
|
//= L0ne_W0lf
|
|
//===== Current Version: =====================================
|
|
//===== Current Version: =====================================
|
|
-//= 1.1a
|
|
|
|
|
|
+//= 1.2
|
|
//===== Compatible With: =====================================
|
|
//===== Compatible With: =====================================
|
|
//= eAthena SVN
|
|
//= eAthena SVN
|
|
//===== Description: =========================================
|
|
//===== Description: =========================================
|
|
@@ -22,6 +22,8 @@
|
|
//= Shaman Cargalache, copy/paste fail.
|
|
//= Shaman Cargalache, copy/paste fail.
|
|
//= Changed spawn point for dungeon according to spawn
|
|
//= Changed spawn point for dungeon according to spawn
|
|
//= point on iRO.
|
|
//= point on iRO.
|
|
|
|
+//= 1.2 More bugfixes, mostly typos. :O (bugreport:3944) [L0ne_W0lf]
|
|
|
|
+//= Fixed some varaibles (types/values) as well.
|
|
//============================================================
|
|
//============================================================
|
|
|
|
|
|
// Entrance
|
|
// Entrance
|
|
@@ -52,7 +54,7 @@ gef_fild10,242,202,0 script Dimensional Gorge Piece 406,{
|
|
set .@instance, instance_create(.@md_name$, .@party_id);
|
|
set .@instance, instance_create(.@md_name$, .@party_id);
|
|
if (.@instance < 0) {
|
|
if (.@instance < 0) {
|
|
mes "Party Name: "+.@p_name$+"";
|
|
mes "Party Name: "+.@p_name$+"";
|
|
- mes "Party Leader: "+p_reader+"";
|
|
|
|
|
|
+ mes "Party Leader: "+.@p_reader+"";
|
|
mes "^0000ff"+.@md_name$+" ^000000 - Reservation Failed.";
|
|
mes "^0000ff"+.@md_name$+" ^000000 - Reservation Failed.";
|
|
close;
|
|
close;
|
|
}
|
|
}
|
|
@@ -227,7 +229,7 @@ gef_fild10,238,202,6 script Mad Scientist#orc 865,{
|
|
mes "[Mad Scientist]";
|
|
mes "[Mad Scientist]";
|
|
mes "Yeah, yeah.. I know it's hard to belive. I don't blame ya.";
|
|
mes "Yeah, yeah.. I know it's hard to belive. I don't blame ya.";
|
|
mes "I used to study the Dimensional Gorge discovered near Morroc.";
|
|
mes "I used to study the Dimensional Gorge discovered near Morroc.";
|
|
- mes "According to my reseach, the minerals found there have enormous power insde them!";
|
|
|
|
|
|
+ mes "According to my research, the minerals found there have enormous power inside them!";
|
|
next;
|
|
next;
|
|
break;
|
|
break;
|
|
case 2:
|
|
case 2:
|
|
@@ -336,14 +338,14 @@ OnMyMobDead:
|
|
instance_announce 0, "High Orc: We need more defense! Get more people here!",bc_map,"0xff4444";
|
|
instance_announce 0, "High Orc: We need more defense! Get more people here!",bc_map,"0xff4444";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- else if ((mob_ran > 26) && (mob_ran < 29)) {
|
|
|
|
|
|
+ else if ((.@mob_ran > 26) && (.@mob_ran < 29)) {
|
|
areamonster "1@orcs",41,91,51,81,"High Orc",1213,.@mob_dead_num,instance_npcname("#Resurrect Monsters1", instance_id())+"::OnMyMobDead";
|
|
areamonster "1@orcs",41,91,51,81,"High Orc",1213,.@mob_dead_num,instance_npcname("#Resurrect Monsters1", instance_id())+"::OnMyMobDead";
|
|
if (rand(1,10) == 9) {
|
|
if (rand(1,10) == 9) {
|
|
instance_announce 0, "Where are the High Orcs!? Get them to stop the enemies!",bc_map,"0xff4444";
|
|
instance_announce 0, "Where are the High Orcs!? Get them to stop the enemies!",bc_map,"0xff4444";
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else {
|
|
else {
|
|
- areamonster "1@orcs",17,187,27,177,"High Orc",1213,.@mob_dead_num;
|
|
|
|
|
|
+ areamonster "1@orcs",17,187,27,177,"High Orc",1213,.@mob_dead_num,instance_npcname("#Resurrect Monsters1", instance_id())+"::OnMyMobDead";
|
|
if (rand(1,5) == 3) {
|
|
if (rand(1,5) == 3) {
|
|
instance_announce 0, "Caution: The army's starting to concentrate at Zone No.4.",bc_map,"0x77ff77";
|
|
instance_announce 0, "Caution: The army's starting to concentrate at Zone No.4.",bc_map,"0x77ff77";
|
|
}
|
|
}
|
|
@@ -486,7 +488,7 @@ OnInstanceInit:
|
|
end;
|
|
end;
|
|
|
|
|
|
OnMyMobDead:
|
|
OnMyMobDead:
|
|
- set .@callnum,15;
|
|
|
|
|
|
+ set .@callnum,10;
|
|
set .@c_mob_num,mobcount("1@orcs",instance_npcname("#Resurrect Monsters4", instance_id())+"::OnMyMobDead");
|
|
set .@c_mob_num,mobcount("1@orcs",instance_npcname("#Resurrect Monsters4", instance_id())+"::OnMyMobDead");
|
|
set .@mob_dead_num,.@callnum - .@c_mob_num;
|
|
set .@mob_dead_num,.@callnum - .@c_mob_num;
|
|
if (.@mob_dead_num > 0) {
|
|
if (.@mob_dead_num > 0) {
|
|
@@ -685,7 +687,7 @@ OnMyMobDead3:
|
|
end;
|
|
end;
|
|
}
|
|
}
|
|
|
|
|
|
-// Orc's Memory Floor 1
|
|
|
|
|
|
+// Orc's Memory Floor 2
|
|
2@orcs,36,171,0 script #2Resurrect Monsters1 844,{
|
|
2@orcs,36,171,0 script #2Resurrect Monsters1 844,{
|
|
end;
|
|
end;
|
|
|
|
|
|
@@ -733,7 +735,7 @@ OnDisable:
|
|
|
|
|
|
OnMyMobDead:
|
|
OnMyMobDead:
|
|
set .@callnum,30;
|
|
set .@callnum,30;
|
|
- set .@c_mob_num,mobcount("2@orcs",instance_npcname("#2Resurrect Monster1", instance_id())+"::OnMyMobDead");
|
|
|
|
|
|
+ set .@c_mob_num,mobcount("2@orcs",instance_npcname("#2Resurrect Monsters1", instance_id())+"::OnMyMobDead");
|
|
set .@mob_dead_num,.@callnum - .@c_mob_num;
|
|
set .@mob_dead_num,.@callnum - .@c_mob_num;
|
|
if (.@mob_dead_num > 0) {
|
|
if (.@mob_dead_num > 0) {
|
|
set .@mob_ran,rand(1,30);
|
|
set .@mob_ran,rand(1,30);
|
|
@@ -800,7 +802,7 @@ OnEnable:
|
|
end;
|
|
end;
|
|
|
|
|
|
OnMyMobDead:
|
|
OnMyMobDead:
|
|
- set .@callnum,30;
|
|
|
|
|
|
+ set .@callnum,15;
|
|
set .@c_mob_num,mobcount("2@orcs",instance_npcname("#2Resurrect Monsters3", instance_id())+"::OnMyMobDead");
|
|
set .@c_mob_num,mobcount("2@orcs",instance_npcname("#2Resurrect Monsters3", instance_id())+"::OnMyMobDead");
|
|
set .@mob_dead_num,.@callnum - .@c_mob_num;
|
|
set .@mob_dead_num,.@callnum - .@c_mob_num;
|
|
set .@mob_ran,rand(1,30);
|
|
set .@mob_ran,rand(1,30);
|
|
@@ -1287,17 +1289,17 @@ OnEnable:
|
|
|
|
|
|
OnMyMobDead:
|
|
OnMyMobDead:
|
|
donpcevent instance_npcname("Kruger#", instance_id())+"::OnEnable";
|
|
donpcevent instance_npcname("Kruger#", instance_id())+"::OnEnable";
|
|
- set .@mob_ran,rand(1,4);
|
|
|
|
|
|
+ set .@mob_ran,rand(1,5);
|
|
if (.@mob_ran == 1) {
|
|
if (.@mob_ran == 1) {
|
|
instance_announce 0, "Shaman Cargalache: How... How could this be... How could someone like you...!!",bc_map,"0xffff00";
|
|
instance_announce 0, "Shaman Cargalache: How... How could this be... How could someone like you...!!",bc_map,"0xffff00";
|
|
}
|
|
}
|
|
- else if (.@mob_ran == 1) {
|
|
|
|
|
|
+ else if (.@mob_ran == 2) {
|
|
instance_announce 0, "Shaman Cargalache: How is it that I've been overpowered by mere humans!",bc_map,"0xffff00";
|
|
instance_announce 0, "Shaman Cargalache: How is it that I've been overpowered by mere humans!",bc_map,"0xffff00";
|
|
}
|
|
}
|
|
- else if (.@mob_ran == 2) {
|
|
|
|
|
|
+ else if (.@mob_ran == 3) {
|
|
instance_announce 0, "Shaman Cargalache: This... This can't be the end...",bc_map,"0xffff00";
|
|
instance_announce 0, "Shaman Cargalache: This... This can't be the end...",bc_map,"0xffff00";
|
|
}
|
|
}
|
|
- else if (.@mob_ran == 3) {
|
|
|
|
|
|
+ else if (.@mob_ran == 4) {
|
|
instance_announce 0, "Shaman Cargalache: I... Can't die... Yet...!",bc_map,"0xffff00";
|
|
instance_announce 0, "Shaman Cargalache: I... Can't die... Yet...!",bc_map,"0xffff00";
|
|
}
|
|
}
|
|
else {
|
|
else {
|