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/other/gympass.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/other/gympass.txt')
-rw-r--r-- | npc/other/gympass.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/npc/other/gympass.txt b/npc/other/gympass.txt index e2bf637ad..1d4ae0c19 100644 --- a/npc/other/gympass.txt +++ b/npc/other/gympass.txt @@ -57,7 +57,7 @@ payon,173,141,4 script Ripped Cabus#GymPass 899,{ mes "item carrying muscles."; close; } - else if (getskilllv(681) >= 10) { + else if (getskilllv("ALL_INCCARRY") >= 10) { mes "[Ripped]"; mes "Dude, I don't think we can"; mes "build up your item carrying"; @@ -83,7 +83,7 @@ payon,173,141,4 script Ripped Cabus#GymPass 899,{ next; specialeffect2 62; next; - skill 681,getskilllv(681)+1,0; + skill "ALL_INCCARRY",getskilllv("ALL_INCCARRY")+1,0; delitem 7776,1; set gympassmemory,gympassmemory+1; mes "[Ripped]"; @@ -105,7 +105,7 @@ payon,173,141,4 script Ripped Cabus#GymPass 899,{ mes "get them in shape."; close; case 3: - if (getskilllv(681) == 0) { + if (getskilllv("ALL_INCCARRY") == 0) { mes "[Ripped]"; mes "Uhh..."; mes "We didn't work out"; |