diff options
author | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-12-07 13:51:38 +0000 |
---|---|---|
committer | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-12-07 13:51:38 +0000 |
commit | 5d1d55adc1b889b8a670c9db2459c06e70c916e7 (patch) | |
tree | 557469119828b7fdca6c531711475f8c3d5f284b /npc/quests/newgears/cat_hairband.txt | |
parent | cef44b0916ccffb9ac8d24460b302949e7367b04 (diff) | |
download | hercules-5d1d55adc1b889b8a670c9db2459c06e70c916e7.tar.gz hercules-5d1d55adc1b889b8a670c9db2459c06e70c916e7.tar.bz2 hercules-5d1d55adc1b889b8a670c9db2459c06e70c916e7.tar.xz hercules-5d1d55adc1b889b8a670c9db2459c06e70c916e7.zip |
fixed 16 newgear quests
(each contained 1-4 bugs: missing labels, wrong labels, wrong items amount, missing checks, missing delitem wrong item ID ,etc )
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@488 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests/newgears/cat_hairband.txt')
-rw-r--r-- | npc/quests/newgears/cat_hairband.txt | 59 |
1 files changed, 32 insertions, 27 deletions
diff --git a/npc/quests/newgears/cat_hairband.txt b/npc/quests/newgears/cat_hairband.txt index 283b4f492..5aa2b5097 100644 --- a/npc/quests/newgears/cat_hairband.txt +++ b/npc/quests/newgears/cat_hairband.txt @@ -4,63 +4,68 @@ //= Halca (1.0) //= Mass Zero (1.1) //===== Current Version: ===================================== -//= 1.1 +//= 1.2 //===== Compatible With: ===================================== //= Any eAthena Version. //===== Description: ========================================= -//= Seperate Cat Hairband quest. +//= Seperate Black Cat Ears (Cat Hairband) quest. //===== Additional Comments: ================================= -//= +//= 1.2 Fixed wrong labels, added missing text, +//= fixed zeny amount [Lupus] //============================================================ pay_cast01.gat,110,160,4 KoneKone 819,{ mes "[KoneKone]"; mes "Don't you just love cats? the way they have the pointy,"; mes "sticky ears and stuff, they're just so cute!"; - next; + next; mes "[KoneKone]"; - mes "Hehe... well, I decided, I would make a Cat Hairband!"; + mes "Hehe... well, I decided, I would make a Black Cat Ears!"; mes "It is modeled on my most favourite of cat... BLACK!"; mes "Of course, I got the idea from Hwikebain!"; - next; + next; mes "[KoneKone]"; mes "I can make it for you, but it requires the correct materials."; - next; - menu "Please make me this item.",-,"What are the materials needed?",BCM,"Bye.",EXT; - If ((countitem(2213) < 1) || (countitem(7063) < 200) || (countitem(983) < 1) || (Zeny < 10000)) GOTO CAT_NM; + next; + menu "Please make me this item.",-,"What are the materials needed?",M_REQ,"Bye.",M_EXIT; + + If ((countitem(2213) < 1) || (countitem(7063) < 200) || (countitem(983) < 1) || (Zeny < 10000)) GOTO L_NOITEM;//Items: Kitty Band, Soft Feather, Black Dyestuff, mes "[KoneKone]"; mes "Wow! thankies! I will now take your items!"; - next; - delitem 2213,1; - delitem 7063,200; - delitem 983,1; - set Zeny,Zeny-1000; + next; + delitem 2213,1;//Items: Kitty Band, + delitem 7063,200;//Items: Soft Feather, + delitem 983,1;//Items: Black Dyestuff, + set Zeny,Zeny-10000; mes "[KoneKone]"; mes "Mew mew! thanks! Now for your ears!"; - next; - getitem 5057,1; + next; + getitem 5057,1;//Items: Black Cat Ears, mes "[KoneKone]"; mes "Mew! thanks! It was a pleasure to make them for you!"; - close; -CAT_NM: + close; + +L_NOITEM: mes "[KoneKone]"; mes "Sorry, but you dont have what I asked for..."; - close; -BCM: + close; + +M_REQ: mes "[KoneKone]"; - mes "For the ^670000Cat Hairband^000000, the following items are needed:"; - next; + mes "For the ^670000Black Cat Ears^000000, the following items are needed:"; + next; mes "[KoneKone]"; mes "1 Kitty Band,"; mes "200 Soft Feathers,"; mes "Some Black Dye,"; mes "And of course 10,000z for labour costs."; - next; + next; mes "[KoneKone]"; mes "Bring me these items and the money and I will make it for you."; - close; -EXT: + close; + +M_EXIT: mes "[KoneKone]"; mes "Okay, *meow* have a nice day!"; - close; -}
\ No newline at end of file + close; +} |