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/acolyte.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/acolyte.txt')
-rw-r--r-- | npc/jobs/1-1/acolyte.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/npc/jobs/1-1/acolyte.txt b/npc/jobs/1-1/acolyte.txt index e2b8917d4..92426ddf5 100644 --- a/npc/jobs/1-1/acolyte.txt +++ b/npc/jobs/1-1/acolyte.txt @@ -35,7 +35,7 @@ prt_church,184,41,4 script Cleric#aco 60,{ mes "Ah, I sense you have endured"; mes "a past life experience. You must have learned many things before entering Valhalla."; next; - if (getskilllv(1) < 9) { + if (getskilllv("NV_BASIC") < 9) { mes "[Father Mareusis]"; mes "Unfortunately, I don't think you're ready to become an Acolyte yet. Please finish learning all of the Basic Skills first."; next; @@ -131,7 +131,7 @@ prt_church,184,41,4 script Cleric#aco 60,{ mes "Oh, you've come back. Let me check and see if you are ready to serve God. Let's see..."; next; mes "[Father Mareusis]"; - if (getskilllv(1) < 9) { + if (getskilllv("NV_BASIC") < 9) { mes "Good Lord! Haven't you accomplished the Basic Training yet?! It's important that you finish that!"; next; mes "[Father Mareusis]"; |