diff options
author | samuray22 <samuray22@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-11-25 21:48:50 +0000 |
---|---|---|
committer | samuray22 <samuray22@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-11-25 21:48:50 +0000 |
commit | 99936e8b1487b5f922b00d82116e7b430d173333 (patch) | |
tree | c656663e4e1379cfd9e2250dd67fb47e80cab2a1 /npc/jobs/1-1 | |
parent | 7cfdfb860e25f24181846d0928d1b8dffc0cb868 (diff) | |
download | hercules-99936e8b1487b5f922b00d82116e7b430d173333.tar.gz hercules-99936e8b1487b5f922b00d82116e7b430d173333.tar.bz2 hercules-99936e8b1487b5f922b00d82116e7b430d173333.tar.xz hercules-99936e8b1487b5f922b00d82116e7b430d173333.zip |
* Fixed a Problem in Mage Quest. (bugreport:489)
* Change a "+ name +" to "+ strcharinfo +" in a jawaii NPC.
* Change to non-capital letters StarGladiator and SoulLinker Quests Name.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@11805 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/jobs/1-1')
-rw-r--r-- | npc/jobs/1-1/mage.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/npc/jobs/1-1/mage.txt b/npc/jobs/1-1/mage.txt index 5c9d35655..3cb07c6a2 100644 --- a/npc/jobs/1-1/mage.txt +++ b/npc/jobs/1-1/mage.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= kobra_k88; L0ne_W0lf //===== Current Version: ===================================== -//= 1.7 +//= 1.7a //===== Compatible With: ===================================== //= eAthena SVN //===== Description: ========================================= @@ -19,6 +19,7 @@ //= 1.6 Merged back JFunc, CHANGED NUMBERS TO CONSTANTS [Lupus] //= 1.7 Rescripted to Aegis 10.3 stadards. [L0ne_W0lf] //= No longer uses function "F_ToHigh" +//= 1.7a Fixed a "If" in the quest. (bugreport:489) [Samuray22] //============================================================ geffen_in,164,124,4 script Mage Guildsman 123,{ @@ -164,7 +165,7 @@ geffen_in,164,124,4 script Mage Guildsman 123,{ close; } else { - if (job_magician_q == 1 && countitem(1071) == 0) || (job_magician_q == 2 && countitem(1085) == 0 || job_magician_q == 3 && countitem(1086) == 0 || job_magician_q == 4 && countitem(1087) == 0) { + if ((job_magician_q == 1 && countitem(1071) == 0) || (job_magician_q == 2 && countitem(1085) == 0) || (job_magician_q == 3 && countitem(1086) == 0) || (job_magician_q == 4 && countitem(1087) == 0)) { mes "Wait."; mes "This isn't the"; mes "Solution I asked for!"; |