summaryrefslogtreecommitdiff
path: root/npc/other
diff options
context:
space:
mode:
authorL0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec>2009-08-18 22:33:33 +0000
committerL0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec>2009-08-18 22:33:33 +0000
commit700e4388dbea30f4119404b3eb1ac9be372d1adf (patch)
tree1073244b7afae0c575fb93e959dfbbd393fba674 /npc/other
parentabc6f29b74a026f0c2ba219fbd9dcbd0ed1cfa31 (diff)
downloadhercules-700e4388dbea30f4119404b3eb1ac9be372d1adf.tar.gz
hercules-700e4388dbea30f4119404b3eb1ac9be372d1adf.tar.bz2
hercules-700e4388dbea30f4119404b3eb1ac9be372d1adf.tar.xz
hercules-700e4388dbea30f4119404b3eb1ac9be372d1adf.zip
* Changed attribute_recover to no, being hit by the same element should not recover HP.
* Added monster_noteleport to Okolnir quest maps. Will fix the tarot card issue. - Fixed Brynhild dialog in the Asprika quests. (bugreport:3085) - Removed "Disabled" tag from Volcano base quest. (bugreport:3342) - Attempted to fix the sign quest dancing portion. (bugreport:3382) - Fixed Guardian in schg_cas03 using invalid coords. (bugreport:3462) - Fixed Turbo Track records using wrong variable type. (bugreport:3484) - Fixed the checkweights in the Crow of Fate quest. (bugreport:3500) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@14013 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/other')
-rw-r--r--npc/other/turbotrack/Expert_16.txt13
-rw-r--r--npc/other/turbotrack/Expert_4.txt13
-rw-r--r--npc/other/turbotrack/Expert_8.txt13
-rw-r--r--npc/other/turbotrack/Normal_16.txt13
-rw-r--r--npc/other/turbotrack/Normal_4.txt13
-rw-r--r--npc/other/turbotrack/Normal_8.txt13
6 files changed, 42 insertions, 36 deletions
diff --git a/npc/other/turbotrack/Expert_16.txt b/npc/other/turbotrack/Expert_16.txt
index 5627295a5..cd758bb3a 100644
--- a/npc/other/turbotrack/Expert_16.txt
+++ b/npc/other/turbotrack/Expert_16.txt
@@ -3,7 +3,7 @@
//===== By: ==================================================
//= L0ne_W0lf
//===== Current Version: =====================================
-//= 1.2
+//= 1.3
//===== Compatible With: =====================================
//= eAthena SVN
//===== Description: =========================================
@@ -13,6 +13,7 @@
//= 1.0 First version. [L0ne_W0lf]
//= 1.1 Fixed small official bug. [L0ne_W0lf]
//= 1.2 Fixed a little mistake [akrus]
+//= 1.3 Corrected issue with top record setting. [L0ne_W0lf]
//============================================================
turbo_room,124,135,3 script Expert mode - 16 person 124,{
@@ -958,7 +959,7 @@ turbo_e_16,384,167,1 script Winner Helper#TBT_e_16 47,{
next;
if (tt_rank > $ttranks[1]) {
setarray $ttranks[0],$ttranks[0],tt_rank,$ttranks[1],$ttranks[2],$ttranks[3],$ttranks[4];
- setarray $ttnames[9],strcharinfo(0);
+ setarray $ttnames$[9],strcharinfo(0);
mes "[Guide]";
mes "Congratulations!";
mes "You are ranked as";
@@ -982,7 +983,7 @@ turbo_e_16,384,167,1 script Winner Helper#TBT_e_16 47,{
}
else if (tt_rank > $ttranks[2]) {
setarray $ttranks[0],$ttranks[0],$ttranks[1],tt_rank,$ttranks[3],$ttranks[4],$ttranks[5];
- setarray $ttnames[10],strcharinfo(0);
+ setarray $ttnames$[10],strcharinfo(0);
mes "[Guide]";
mes "Congratulations!";
mes "You've ranked Second";
@@ -1006,7 +1007,7 @@ turbo_e_16,384,167,1 script Winner Helper#TBT_e_16 47,{
}
else if (tt_rank > $ttranks[3]) {
setarray $ttranks[0],$ttranks[0],$ttranks[1],$ttranks[2],tt_rank,$ttranks[4],$ttranks[5];
- setarray $ttnames[11],strcharinfo(0);
+ setarray $ttnames$[11],strcharinfo(0);
mes "[Guide]";
mes "Congratulations!";
mes "You've ranked Third";
@@ -1030,7 +1031,7 @@ turbo_e_16,384,167,1 script Winner Helper#TBT_e_16 47,{
}
else if (tt_rank > $ttranks[4]) {
setarray $ttranks[0],$ttranks[0],$ttranks[1],$ttranks[2],$ttranks[3],tt_rank,$ttranks[5];
- setarray $ttnames[12],strcharinfo(0);
+ setarray $ttnames$[12],strcharinfo(0);
mes "[Guide]";
mes "Congratulations!";
mes "You've ranked Fourth";
@@ -1054,7 +1055,7 @@ turbo_e_16,384,167,1 script Winner Helper#TBT_e_16 47,{
}
else if (tt_rank > $ttranks[5]) {
setarray $ttranks[0],$ttranks[0],$ttranks[1],$ttranks[2],$ttranks[3],$ttranks[4],tt_rank;
- setarray $ttnames[13],strcharinfo(0);
+ setarray $ttnames$[13],strcharinfo(0);
mes "[Guide]";
mes "Congratulations!";
mes "You've ranked Fifth";
diff --git a/npc/other/turbotrack/Expert_4.txt b/npc/other/turbotrack/Expert_4.txt
index d1d3f75c2..a58220d82 100644
--- a/npc/other/turbotrack/Expert_4.txt
+++ b/npc/other/turbotrack/Expert_4.txt
@@ -3,7 +3,7 @@
//===== By: ==================================================
//= L0ne_W0lf
//===== Current Version: =====================================
-//= 1.2
+//= 1.3
//===== Compatible With: =====================================
//= eAthena SVN
//===== Description: =========================================
@@ -13,6 +13,7 @@
//= 1.0 First version. [L0ne_W0lf]
//= 1.1 Fixed small official bug. [L0ne_W0lf]
//= 1.2 Fixed a little mistake [akrus]
+//= 1.3 Corrected issue with top record setting. [L0ne_W0lf]
//============================================================
turbo_room,110,135,3 script Expert mode - 4 person 124,{
@@ -853,7 +854,7 @@ turbo_e_4,384,167,1 script Winner Helper#TBT_e_4 47,{
next;
if (tt_rank > $ttranks[1]) {
setarray $ttranks[0],$ttranks[0],tt_rank,$ttranks[1],$ttranks[2],$ttranks[3],$ttranks[4];
- setarray $ttnames[9],strcharinfo(0);
+ setarray $ttnames$[9],strcharinfo(0);
mes "[Guide]";
mes "Congratulations!";
mes "You are ranked as";
@@ -877,7 +878,7 @@ turbo_e_4,384,167,1 script Winner Helper#TBT_e_4 47,{
}
else if (tt_rank > $ttranks[2]) {
setarray $ttranks[0],$ttranks[0],$ttranks[1],tt_rank,$ttranks[3],$ttranks[4],$ttranks[5];
- setarray $ttnames[10],strcharinfo(0);
+ setarray $ttnames$[10],strcharinfo(0);
mes "[Guide]";
mes "Congratulations!";
mes "You've ranked Second";
@@ -901,7 +902,7 @@ turbo_e_4,384,167,1 script Winner Helper#TBT_e_4 47,{
}
else if (tt_rank > $ttranks[3]) {
setarray $ttranks[0],$ttranks[0],$ttranks[1],$ttranks[2],tt_rank,$ttranks[4],$ttranks[5];
- setarray $ttnames[11],strcharinfo(0);
+ setarray $ttnames$[11],strcharinfo(0);
mes "[Guide]";
mes "Congratulations!";
mes "You've ranked Third";
@@ -925,7 +926,7 @@ turbo_e_4,384,167,1 script Winner Helper#TBT_e_4 47,{
}
else if (tt_rank > $ttranks[4]) {
setarray $ttranks[0],$ttranks[0],$ttranks[1],$ttranks[2],$ttranks[3],tt_rank,$ttranks[5];
- setarray $ttnames[12],strcharinfo(0);
+ setarray $ttnames$[12],strcharinfo(0);
mes "[Guide]";
mes "Congratulations!";
mes "You've ranked Fourth";
@@ -949,7 +950,7 @@ turbo_e_4,384,167,1 script Winner Helper#TBT_e_4 47,{
}
else if (tt_rank > $ttranks[5]) {
setarray $ttranks[0],$ttranks[0],$ttranks[1],$ttranks[2],$ttranks[3],$ttranks[4],tt_rank;
- setarray $ttnames[13],strcharinfo(0);
+ setarray $ttnames$[13],strcharinfo(0);
mes "[Guide]";
mes "Congratulations!";
mes "You've ranked Fifth";
diff --git a/npc/other/turbotrack/Expert_8.txt b/npc/other/turbotrack/Expert_8.txt
index 74d59112f..f7fea20d8 100644
--- a/npc/other/turbotrack/Expert_8.txt
+++ b/npc/other/turbotrack/Expert_8.txt
@@ -3,7 +3,7 @@
//===== By: ==================================================
//= L0ne_W0lf
//===== Current Version: =====================================
-//= 1.2
+//= 1.3
//===== Compatible With: =====================================
//= eAthena SVN
//===== Description: =========================================
@@ -13,6 +13,7 @@
//= 1.0 First version. [L0ne_W0lf]
//= 1.1 Fixed small official bug. [L0ne_W0lf]
//= 1.2 Fixed a little mistake [akrus]
+//= 1.3 Corrected issue with top record setting. [L0ne_W0lf]
//============================================================
turbo_room,117,135,3 script Expert mode - 8 person 124,{
@@ -880,7 +881,7 @@ turbo_e_8,384,167,1 script Winner Helper#TBT_e_8 47,{
next;
if (tt_rank > $ttranks[1]) {
setarray $ttranks[0],$ttranks[0],tt_rank,$ttranks[1],$ttranks[2],$ttranks[3],$ttranks[4];
- setarray $ttnames[9],strcharinfo(0);
+ setarray $ttnames$[9],strcharinfo(0);
mes "[Guide]";
mes "Congratulations!";
mes "You are ranked as";
@@ -904,7 +905,7 @@ turbo_e_8,384,167,1 script Winner Helper#TBT_e_8 47,{
}
else if (tt_rank > $ttranks[2]) {
setarray $ttranks[0],$ttranks[0],$ttranks[1],tt_rank,$ttranks[3],$ttranks[4],$ttranks[5];
- setarray $ttnames[10],strcharinfo(0);
+ setarray $ttnames$[10],strcharinfo(0);
mes "[Guide]";
mes "Congratulations!";
mes "You've ranked Second";
@@ -928,7 +929,7 @@ turbo_e_8,384,167,1 script Winner Helper#TBT_e_8 47,{
}
else if (tt_rank > $ttranks[3]) {
setarray $ttranks[0],$ttranks[0],$ttranks[1],$ttranks[2],tt_rank,$ttranks[4],$ttranks[5];
- setarray $ttnames[11],strcharinfo(0);
+ setarray $ttnames$[11],strcharinfo(0);
mes "[Guide]";
mes "Congratulations!";
mes "You've ranked Third";
@@ -952,7 +953,7 @@ turbo_e_8,384,167,1 script Winner Helper#TBT_e_8 47,{
}
else if (tt_rank > $ttranks[4]) {
setarray $ttranks[0],$ttranks[0],$ttranks[1],$ttranks[2],$ttranks[3],tt_rank,$ttranks[5];
- setarray $ttnames[12],strcharinfo(0);
+ setarray $ttnames$[12],strcharinfo(0);
mes "[Guide]";
mes "Congratulations!";
mes "You've ranked Fourth";
@@ -976,7 +977,7 @@ turbo_e_8,384,167,1 script Winner Helper#TBT_e_8 47,{
}
else if (tt_rank > $ttranks[5]) {
setarray $ttranks[0],$ttranks[0],$ttranks[1],$ttranks[2],$ttranks[3],$ttranks[4],tt_rank;
- setarray $ttnames[13],strcharinfo(0);
+ setarray $ttnames$[13],strcharinfo(0);
mes "[Guide]";
mes "Congratulations!";
mes "You've ranked Fifth";
diff --git a/npc/other/turbotrack/Normal_16.txt b/npc/other/turbotrack/Normal_16.txt
index 42c0f2565..d321e8c1f 100644
--- a/npc/other/turbotrack/Normal_16.txt
+++ b/npc/other/turbotrack/Normal_16.txt
@@ -3,7 +3,7 @@
//===== By: ==================================================
//= L0ne_W0lf
//===== Current Version: =====================================
-//= 1.3
+//= 1.4
//===== Compatible With: =====================================
//= eAthena SVN
//===== Description: =========================================
@@ -14,6 +14,7 @@
//= 1.1 Fixed small official bug. [L0ne_W0lf]
//= 1.2 Replaced effect numerics with constants. [L0ne_W0lf]
//= 1.3 Fixed a little mistake [akrus]
+//= 1.4 Corrected issue with top record setting. [L0ne_W0lf]
//============================================================
turbo_room,91,135,3 script Normal mode - 16 person 124,{
@@ -959,7 +960,7 @@ turbo_n_16,384,167,1 script Winner Helper#TBT_n_16 47,{
next;
if (tt_rank > $ttranks[1]) {
setarray $ttranks[0],$ttranks[0],tt_rank,$ttranks[1],$ttranks[2],$ttranks[3],$ttranks[4];
- setarray $ttnames[9],strcharinfo(0);
+ setarray $ttnames$[9],strcharinfo(0);
mes "[Guide]";
mes "Congratulations!";
mes "You are ranked as";
@@ -983,7 +984,7 @@ turbo_n_16,384,167,1 script Winner Helper#TBT_n_16 47,{
}
else if (tt_rank > $ttranks[2]) {
setarray $ttranks[0],$ttranks[0],$ttranks[1],tt_rank,$ttranks[3],$ttranks[4],$ttranks[5];
- setarray $ttnames[10],strcharinfo(0);
+ setarray $ttnames$[10],strcharinfo(0);
mes "[Guide]";
mes "Congratulations!";
mes "You've ranked Second";
@@ -1007,7 +1008,7 @@ turbo_n_16,384,167,1 script Winner Helper#TBT_n_16 47,{
}
else if (tt_rank > $ttranks[3]) {
setarray $ttranks[0],$ttranks[0],$ttranks[1],$ttranks[2],tt_rank,$ttranks[4],$ttranks[5];
- setarray $ttnames[11],strcharinfo(0);
+ setarray $ttnames$[11],strcharinfo(0);
mes "[Guide]";
mes "Congratulations!";
mes "You've ranked Third";
@@ -1031,7 +1032,7 @@ turbo_n_16,384,167,1 script Winner Helper#TBT_n_16 47,{
}
else if (tt_rank > $ttranks[4]) {
setarray $ttranks[0],$ttranks[0],$ttranks[1],$ttranks[2],$ttranks[3],tt_rank,$ttranks[5];
- setarray $ttnames[12],strcharinfo(0);
+ setarray $ttnames$[12],strcharinfo(0);
mes "[Guide]";
mes "Congratulations!";
mes "You've ranked Fourth";
@@ -1055,7 +1056,7 @@ turbo_n_16,384,167,1 script Winner Helper#TBT_n_16 47,{
}
else if (tt_rank > $ttranks[5]) {
setarray $ttranks[0],$ttranks[0],$ttranks[1],$ttranks[2],$ttranks[3],$ttranks[4],tt_rank;
- setarray $ttnames[13],strcharinfo(0);
+ setarray $ttnames$[13],strcharinfo(0);
mes "[Guide]";
mes "Congratulations!";
mes "You've ranked Fifth";
diff --git a/npc/other/turbotrack/Normal_4.txt b/npc/other/turbotrack/Normal_4.txt
index 0c730a3f3..3cee6ff5f 100644
--- a/npc/other/turbotrack/Normal_4.txt
+++ b/npc/other/turbotrack/Normal_4.txt
@@ -3,7 +3,7 @@
//===== By: ==================================================
//= L0ne_W0lf
//===== Current Version: =====================================
-//= 1.3
+//= 1.4
//===== Compatible With: =====================================
//= eAthena SVN
//===== Description: =========================================
@@ -14,6 +14,7 @@
//= 1.1 Fixed small official bug. [L0ne_W0lf]
//= 1.2 Replaced effect numerics with constants. [L0ne_W0lf]
//= 1.3 Fixed a little mistake [akrus]
+//= 1.4 Corrected issue with top record setting. [L0ne_W0lf]
//============================================================
turbo_room,77,135,3 script Normal mode - 4 person 124,{
@@ -853,7 +854,7 @@ turbo_n_4,384,167,1 script Winner Helper#TBT_n_4 47,{
next;
if (tt_rank > $ttranks[1]) {
setarray $ttranks[0],$ttranks[0],tt_rank,$ttranks[1],$ttranks[2],$ttranks[3],$ttranks[4];
- setarray $ttnames[9],strcharinfo(0);
+ setarray $ttnames$[9],strcharinfo(0);
mes "[Guide]";
mes "Congratulations!";
mes "You are ranked as";
@@ -877,7 +878,7 @@ turbo_n_4,384,167,1 script Winner Helper#TBT_n_4 47,{
}
else if (tt_rank > $ttranks[2]) {
setarray $ttranks[0],$ttranks[0],$ttranks[1],tt_rank,$ttranks[3],$ttranks[4],$ttranks[5];
- setarray $ttnames[10],strcharinfo(0);
+ setarray $ttnames$[10],strcharinfo(0);
mes "[Guide]";
mes "Congratulations!";
mes "You've ranked Second";
@@ -901,7 +902,7 @@ turbo_n_4,384,167,1 script Winner Helper#TBT_n_4 47,{
}
else if (tt_rank > $ttranks[3]) {
setarray $ttranks[0],$ttranks[0],$ttranks[1],$ttranks[2],tt_rank,$ttranks[4],$ttranks[5];
- setarray $ttnames[11],strcharinfo(0);
+ setarray $ttnames$[11],strcharinfo(0);
mes "[Guide]";
mes "Congratulations!";
mes "You've ranked Third";
@@ -925,7 +926,7 @@ turbo_n_4,384,167,1 script Winner Helper#TBT_n_4 47,{
}
else if (tt_rank > $ttranks[4]) {
setarray $ttranks[0],$ttranks[0],$ttranks[1],$ttranks[2],$ttranks[3],tt_rank,$ttranks[5];
- setarray $ttnames[12],strcharinfo(0);
+ setarray $ttnames$[12],strcharinfo(0);
mes "[Guide]";
mes "Congratulations!";
mes "You've ranked Fourth";
@@ -949,7 +950,7 @@ turbo_n_4,384,167,1 script Winner Helper#TBT_n_4 47,{
}
else if (tt_rank > $ttranks[5]) {
setarray $ttranks[0],$ttranks[0],$ttranks[1],$ttranks[2],$ttranks[3],$ttranks[4],tt_rank;
- setarray $ttnames[13],strcharinfo(0);
+ setarray $ttnames$[13],strcharinfo(0);
mes "[Guide]";
mes "Congratulations!";
mes "You've ranked Fifth";
diff --git a/npc/other/turbotrack/Normal_8.txt b/npc/other/turbotrack/Normal_8.txt
index 2d6354c3c..0decd29f1 100644
--- a/npc/other/turbotrack/Normal_8.txt
+++ b/npc/other/turbotrack/Normal_8.txt
@@ -3,7 +3,7 @@
//===== By: ==================================================
//= L0ne_W0lf
//===== Current Version: =====================================
-//= 1.3
+//= 1.4
//===== Compatible With: =====================================
//= eAthena SVN
//===== Description: =========================================
@@ -14,6 +14,7 @@
//= 1.1 Fixed small official bug. [L0ne_W0lf]
//= 1.2 Replaced effect numerics with constants. [L0ne_W0lf]
//= 1.3 Fixed a little mistake [akrus]
+//= 1.4 Corrected issue with top record setting. [L0ne_W0lf]
//============================================================
turbo_room,84,135,3 script Normal mode - 8 person 124,{
@@ -880,7 +881,7 @@ turbo_n_8,384,167,1 script Winner Helper#TBT_n_8 47,{
next;
if (tt_rank > $ttranks[1]) {
setarray $ttranks[0],$ttranks[0],tt_rank,$ttranks[1],$ttranks[2],$ttranks[3],$ttranks[4];
- setarray $ttnames[9],strcharinfo(0);
+ setarray $ttnames$[9],strcharinfo(0);
mes "[Guide]";
mes "Congratulations!";
mes "You are ranked as";
@@ -904,7 +905,7 @@ turbo_n_8,384,167,1 script Winner Helper#TBT_n_8 47,{
}
else if (tt_rank > $ttranks[2]) {
setarray $ttranks[0],$ttranks[0],$ttranks[1],tt_rank,$ttranks[3],$ttranks[4],$ttranks[5];
- setarray $ttnames[10],strcharinfo(0);
+ setarray $ttnames$[10],strcharinfo(0);
mes "[Guide]";
mes "Congratulations!";
mes "You've ranked Second";
@@ -928,7 +929,7 @@ turbo_n_8,384,167,1 script Winner Helper#TBT_n_8 47,{
}
else if (tt_rank > $ttranks[3]) {
setarray $ttranks[0],$ttranks[0],$ttranks[1],$ttranks[2],tt_rank,$ttranks[4],$ttranks[5];
- setarray $ttnames[11],strcharinfo(0);
+ setarray $ttnames$[11],strcharinfo(0);
mes "[Guide]";
mes "Congratulations!";
mes "You've ranked Third";
@@ -952,7 +953,7 @@ turbo_n_8,384,167,1 script Winner Helper#TBT_n_8 47,{
}
else if (tt_rank > $ttranks[4]) {
setarray $ttranks[0],$ttranks[0],$ttranks[1],$ttranks[2],$ttranks[3],tt_rank,$ttranks[5];
- setarray $ttnames[12],strcharinfo(0);
+ setarray $ttnames$[12],strcharinfo(0);
mes "[Guide]";
mes "Congratulations!";
mes "You've ranked Fourth";
@@ -976,7 +977,7 @@ turbo_n_8,384,167,1 script Winner Helper#TBT_n_8 47,{
}
else if (tt_rank > $ttranks[5]) {
setarray $ttranks[0],$ttranks[0],$ttranks[1],$ttranks[2],$ttranks[3],$ttranks[4],tt_rank;
- setarray $ttnames[13],strcharinfo(0);
+ setarray $ttnames$[13],strcharinfo(0);
mes "[Guide]";
mes "Congratulations!";
mes "You've ranked Fifth";