diff options
author | masao87 <masao87@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-01-03 20:09:17 +0000 |
---|---|---|
committer | masao87 <masao87@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-01-03 20:09:17 +0000 |
commit | 221132efd7248b031377f4735a1976bfd835a8d0 (patch) | |
tree | b2769abd3a9d4871bc3b7511cc8b5fc5014721a4 /npc/jobs/3-1/warlock.txt | |
parent | 7ded1afb331d57979fe8fa11bc446ed073198308 (diff) | |
download | hercules-221132efd7248b031377f4735a1976bfd835a8d0.tar.gz hercules-221132efd7248b031377f4735a1976bfd835a8d0.tar.bz2 hercules-221132efd7248b031377f4735a1976bfd835a8d0.tar.xz hercules-221132efd7248b031377f4735a1976bfd835a8d0.zip |
- Follow up r15363.
* Fixed missing countitem() check.
* Added Credits to some Job change Files.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15366 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/jobs/3-1/warlock.txt')
-rw-r--r-- | npc/jobs/3-1/warlock.txt | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/npc/jobs/3-1/warlock.txt b/npc/jobs/3-1/warlock.txt index 47b8c01b2..7a0467500 100644 --- a/npc/jobs/3-1/warlock.txt +++ b/npc/jobs/3-1/warlock.txt @@ -2,7 +2,7 @@ // Warlock Job change Quest
//===== By: ==================================================
//= Masao
-//= Credits: Muad_Dib
+//= Credits: Muad_Dib, Gepard & L0ne_W0lf
//===== Current Version: =====================================
//= 1.0
//===== Compatible With: =====================================
@@ -829,13 +829,13 @@ spl_in02,84,103,3 script Assistant#Warlock2 445,{ mes "Would you like to try it again?";
mes "Let me give you more rubies.";
next;
- if (12384 > 0){
+ if (countitem(12384) > 0){
delitem 12384,countitem(12384);
- }else if (12385 > 0){
+ }else if (countitem(12385) > 0){
delitem 12385,countitem(12385);
- }else if (12386 > 0){
+ }else if (countitem(12386) > 0){
delitem 12386,countitem(12386);
- }else if (12387 > 0){
+ }else if (countitem(12387) > 0){
delitem 12387,countitem(12387);
}
getitem 12384,5;
@@ -850,13 +850,13 @@ spl_in02,84,103,3 script Assistant#Warlock2 445,{ mes "[Assistant]";
mes "You have successfully crystallized the Hollow Stone.";
mes "I'm sorry that I've doubted you.";
- if (12384 > 0){
+ if (countitem(12384) > 0){
delitem 12384,countitem(12384);
- }else if (12385 > 0){
+ }else if (countitem(12385) > 0){
delitem 12385,countitem(12385);
- }else if (12386 > 0){
+ }else if (countitem(12386) > 0){
delitem 12386,countitem(12386);
- }else if (12387 > 0){
+ }else if (countitem(12387) > 0){
delitem 12387,countitem(12387);
}
next;
|