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/knight_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/knight_skills.txt')
-rw-r--r-- | npc/quests/skills/knight_skills.txt | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/npc/quests/skills/knight_skills.txt b/npc/quests/skills/knight_skills.txt index 41feec727..f26ef6c57 100644 --- a/npc/quests/skills/knight_skills.txt +++ b/npc/quests/skills/knight_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] //============================================================ //============================================================ @@ -54,7 +55,7 @@ prt_in,85,99,6 script Aesop 734,{ } else if(KNGT_SK == 8) { set KNGT_SK, 9; goto K_Learn; - } else if(KNGT_SK == 7 && countitem("Candy_Striper") > 4 && countitem("Witherless_Rose") > 2) { + } else if(KNGT_SK == 7 && countitem(530) > 4 && countitem(748) > 2) { mes "[Aesop]"; mes "...The Candy cane and Witherless Rose"; mes "you brought, can you please"; @@ -93,8 +94,8 @@ prt_in,85,99,6 script Aesop 734,{ mes "In return, I present you"; mes "a skill I discovered in my days."; next; - delitem "Candy_Striper", 5; - delitem "Witherless_Rose", 3; + delitem 530, 5; + delitem 748, 3; set KNGT_SK, 8; mes "[Aesop]"; mes "It's not much, but"; |