diff options
author | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-08-08 19:54:07 +0000 |
---|---|---|
committer | L0ne_W0lf <L0ne_W0lf@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-08-08 19:54:07 +0000 |
commit | b14a29b01e52692e95fcabfc387e9300a8f98845 (patch) | |
tree | 683eba5a917617949a13ded5ff2ccba626171d89 /npc/jobs/novice/supernovice.txt | |
parent | 75e25456f77add4d6b38980f43fa1d0fca060d50 (diff) | |
download | hercules-b14a29b01e52692e95fcabfc387e9300a8f98845.tar.gz hercules-b14a29b01e52692e95fcabfc387e9300a8f98845.tar.bz2 hercules-b14a29b01e52692e95fcabfc387e9300a8f98845.tar.xz hercules-b14a29b01e52692e95fcabfc387e9300a8f98845.zip |
* Slew up NPC bug fixes and other updates.
- Corrected item checking in Dancer job quest. (buggreport:1987)
- Fixed infinite dialog in novice grounds. (buggreport:1998)
- Fixed overlapping warps in ice dungeon. (buggreport:2009)
- Corrected super novice script checks. (buggreport:2016)
- Corrected bug in alchemist dealer. (bugreport:2020)
- Commented out message board NPCs.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13052 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/jobs/novice/supernovice.txt')
-rw-r--r-- | npc/jobs/novice/supernovice.txt | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/npc/jobs/novice/supernovice.txt b/npc/jobs/novice/supernovice.txt index 287e395f6..c6037f103 100644 --- a/npc/jobs/novice/supernovice.txt +++ b/npc/jobs/novice/supernovice.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= Darkchild //===== Current Version: ===================================== -//= 2.0 +//= 2.1 //===== Compatible With: ===================================== //= eAthena SVN //===== Description: ========================================= @@ -14,10 +14,11 @@ //===== Additional Comments: ================================= //= 1.9 Rescripted to the Aegis 10.3 Standars. [Samuray22] //= 2.0 Rescripted again, this time using an iRO base. [L0ne_W0lf] +//= 2.1 Swapped use of baseclass for basejob. [L0ne_W0lf] //============================================================ aldeba_in,223,167,3 script Tzerero#sn 709,{ - if (BaseClass == Job_SuperNovice) { + if (BaseJob == Job_SuperNovice) { mes "[Tzerero]"; mes "I trust that you are enjoying"; mes "life as a Super Novice? Ah,"; @@ -102,7 +103,7 @@ aldeba_in,223,167,3 script Tzerero#sn 709,{ mes "^FF000030 Resin^000000."; close; } - if (BaseClass == Job_Novice && upper != 1) { + if (BaseJob == Job_Novice && upper != 1) { mes "[Tzerero]"; mes "...Hmm?"; mes "Stop."; @@ -269,7 +270,7 @@ aldeba_in,223,167,3 script Tzerero#sn 709,{ } } else { - if (BaseClass == Job_SuperNovice) { + if (BaseJob == Job_SuperNovice) { mes "[Tzerero]"; mes "How do you like living"; mes "life simply as a Super"; |