diff options
author | euphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-26 16:37:30 +0000 |
---|---|---|
committer | euphyy <euphyy@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-07-26 16:37:30 +0000 |
commit | ccdbfa796421ab45c7eaf6857f9617a4f18a82c5 (patch) | |
tree | 36c74d640beb69c96691e32ffc7eab76fb991b97 /npc/pre-re/jobs/novice | |
parent | 9f69e816b69ba212438eeca2c1176cd9a1d0342d (diff) | |
download | hercules-ccdbfa796421ab45c7eaf6857f9617a4f18a82c5.tar.gz hercules-ccdbfa796421ab45c7eaf6857f9617a4f18a82c5.tar.bz2 hercules-ccdbfa796421ab45c7eaf6857f9617a4f18a82c5.tar.xz hercules-ccdbfa796421ab45c7eaf6857f9617a4f18a82c5.zip |
* Updated Super Novice Expansion quest to match the official one, thanks to Gennosuke (the original script is edited a lot, though)
* Updated "Pile Bunker" quest to official, also thanks to Gennosuke
* Follow-up r16485, removed bind limit from documentation
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16505 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/pre-re/jobs/novice')
-rw-r--r-- | npc/pre-re/jobs/novice/supernovice.txt | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/npc/pre-re/jobs/novice/supernovice.txt b/npc/pre-re/jobs/novice/supernovice.txt index b0908f3cf..0605f8a9f 100644 --- a/npc/pre-re/jobs/novice/supernovice.txt +++ b/npc/pre-re/jobs/novice/supernovice.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= Darkchild //===== Current Version: ===================================== -//= 2.3 +//= 2.4 //===== Compatible With: ===================================== //= rAthena SVN r15340+ //===== Description: ========================================= @@ -17,6 +17,7 @@ //= 2.1 Swapped use of baseclass for basejob. [L0ne_W0lf] //= 2.2 Added Quest Log commands. [Kisuka] //= 2.3 NPC "Esseray" calls Ex. Super Novice script when enabled. [Euphy] +//= 2.4 Added an Ex. Super Novice dialog check. [Euphy] //============================================================ aldeba_in,223,167,3 script Tzerero#sn 709,{ @@ -328,6 +329,12 @@ aldeba_in,223,167,3 script Tzerero#sn 709,{ } aldeba_in,216,169,5 script Esseray#sn 86,{ + if (Class == Job_Super_Novice_E || Class == Job_Super_Baby_E) { + mes "[Esseray]"; + mes "You! Stronger than before."; + mes "I knew you could pass the test~"; + close; + } if (BaseJob == Job_SuperNovice) { if (is_function("Esseray_Ex")) callfunc "Esseray_Ex"; mes "[Esseray]"; |