diff options
author | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-08-13 09:13:21 +0000 |
---|---|---|
committer | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-08-13 09:13:21 +0000 |
commit | f7390b98e9b1d4f23d522bfeb2575201ee85f467 (patch) | |
tree | f7404eb6fb54c69b2d80f0ef5b69767eefcf5f6f /npc/quests/skills/monk_skills.txt | |
parent | a07d9f1bac5a32799d359476cdf23d154b0a97ee (diff) | |
download | hercules-f7390b98e9b1d4f23d522bfeb2575201ee85f467.tar.gz hercules-f7390b98e9b1d4f23d522bfeb2575201ee85f467.tar.bz2 hercules-f7390b98e9b1d4f23d522bfeb2575201ee85f467.tar.xz hercules-f7390b98e9b1d4f23d522bfeb2575201ee85f467.zip |
replaced some item names with item IDs, also fixed a bug in skill quest (some items weren't deleted)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10992 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests/skills/monk_skills.txt')
-rw-r--r-- | npc/quests/skills/monk_skills.txt | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/npc/quests/skills/monk_skills.txt b/npc/quests/skills/monk_skills.txt index 93051253a..456e64d63 100644 --- a/npc/quests/skills/monk_skills.txt +++ b/npc/quests/skills/monk_skills.txt @@ -3,7 +3,7 @@ //===== By: ================================================== //= Lupus, Reddozen, Samuray22 //===== Current Version: ===================================== -//= 1.4 +//= 1.4a //===== Compatible With: ===================================== //= eAthena Revision 3800+ //===== Description: ========================================= @@ -19,6 +19,7 @@ //= 1.3a fixed an item ID typo, thx 2Spiritual Kid //= 1.3b Splitted into different files [DracoRPG] //= 1.4 Updated to the official one. [Samuray22] +//= 1.4a replaced item "names" with item id. [Lupus] //============================================================ //============================================================ @@ -348,7 +349,7 @@ prt_monk,129,263,3 script Monk 823,{ mes "while travelling, feel free to"; mes "return and tell me."; close; - } else if(MONK_SK == 4 && countitem("Stem") > 19 && countitem("Shoot") > 2) { + } else if(MONK_SK == 4 && countitem(905) > 19 && countitem(711) > 2) { mes "[Monk]"; mes "...Stubborn fool."; mes "Over 20 stems and 3 Shoots."; @@ -371,8 +372,8 @@ prt_monk,129,263,3 script Monk 823,{ mes "used properly and the"; mes "knowledge goes to waste."; next; - delitem "Stem",20; - delitem "Shoot", 3; + delitem 905,20; + delitem 711, 3; set MONK_SK, 5; mes "[Monk]"; mes "Hmm... you still want to learn?"; |