diff options
author | shadow <shadow@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-06-13 10:13:14 +0000 |
---|---|---|
committer | shadow <shadow@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-06-13 10:13:14 +0000 |
commit | 8605b217a7e1c6ed424a8cdf6a987502e4cd6917 (patch) | |
tree | afc1e3f1f8262e9d7cb2d4c57221b99d7f32a65c /npc/jobs/1-1/swordman.txt | |
parent | 578d813efbb35403bc477c5b876e509715ada52e (diff) | |
download | hercules-8605b217a7e1c6ed424a8cdf6a987502e4cd6917.tar.gz hercules-8605b217a7e1c6ed424a8cdf6a987502e4cd6917.tar.bz2 hercules-8605b217a7e1c6ed424a8cdf6a987502e4cd6917.tar.xz hercules-8605b217a7e1c6ed424a8cdf6a987502e4cd6917.zip |
Converted skill commands integers to strings. Follow up on r12814
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12819 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/jobs/1-1/swordman.txt')
-rw-r--r-- | npc/jobs/1-1/swordman.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/jobs/1-1/swordman.txt b/npc/jobs/1-1/swordman.txt index 37788cbc3..77ea8dfe2 100644 --- a/npc/jobs/1-1/swordman.txt +++ b/npc/jobs/1-1/swordman.txt @@ -46,7 +46,7 @@ izlude_in,74,172,4 script Swordman#swd_1 119,{ mes "[Swordman]"; mes "I see you're retreading the path of the Swordman! Once you've gotten used to brandishing a sword, you can never go back!!"; next; - if (getskilllv(1) < 9) { + if (getskilllv("NV_BASIC") < 9) { mes "[Swordman]"; mes "Hmm? Ah, you must first master the Basic Skills before you are ready to become a Swordman."; next; @@ -135,7 +135,7 @@ izlude_in,74,172,4 script Swordman#swd_1 119,{ } } mes "[Swordman]"; - if (getskilllv(1) < 9) { + if (getskilllv("NV_BASIC") < 9) { mes "Hm, you still haven't learned all of the Basic Skills. You need to do that before you can become a Swordman."; next; mes "[Swordman]"; @@ -209,7 +209,7 @@ izlude_in,62,170,6 script Swordman#swd_2 85,{ mes "Who the hell are you?! Nobody, other than Novices, is permitted to come in here!"; close; } - else if (getskilllv(1) < 9) { + else if (getskilllv("NV_BASIC") < 9) { mes "Stop! I can't let you in until you learn all of the Basic Skills. The Test Hall isn't for goofing off!"; close; } |