diff options
author | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-12-10 08:41:26 +0000 |
---|---|---|
committer | Lupus <Lupus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-12-10 08:41:26 +0000 |
commit | f5a7fa8adb4e259a956fe82f41639f528bd70ada (patch) | |
tree | 7f6475b3a04379b51d684fb7da59f6ec42b822f6 /npc/quests/newgears/indian_headband.txt | |
parent | e1a851c0e4ab1676df9ca9b5e5e06b7cf6e80e03 (diff) | |
download | hercules-f5a7fa8adb4e259a956fe82f41639f528bd70ada.tar.gz hercules-f5a7fa8adb4e259a956fe82f41639f528bd70ada.tar.bz2 hercules-f5a7fa8adb4e259a956fe82f41639f528bd70ada.tar.xz hercules-f5a7fa8adb4e259a956fe82f41639f528bd70ada.zip |
fixed some exploits,
changed ingredients
added missing close;
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@534 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'npc/quests/newgears/indian_headband.txt')
-rw-r--r-- | npc/quests/newgears/indian_headband.txt | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/npc/quests/newgears/indian_headband.txt b/npc/quests/newgears/indian_headband.txt index e5a945170..a98eb8dd4 100644 --- a/npc/quests/newgears/indian_headband.txt +++ b/npc/quests/newgears/indian_headband.txt @@ -4,7 +4,7 @@ //= Halca (1.0), Mass Zero (1.1) //= Lupus (1.2) //===== Current Version: ===================================== -//= 1.1 +//= 1.3 //===== Compatible With: ===================================== //= Any eAthena Version. //===== Description: ========================================= @@ -12,6 +12,7 @@ //===== Additional Comments: ================================= //= 1.2 Fixed wrong labels, added missing text, fixed //= items count [Lupus] +//= 1.3 Fixed ingredients according to kRO [Lupus] //============================================================ comodo.gat,238,217,5 script Merunte 832,{ @@ -24,7 +25,9 @@ comodo.gat,238,217,5 script Merunte 832,{ mes "[Merunte]"; mes "Ok. Gimme:"; - mes "100 Bill of Birds,"; + mes "1 Hair Band,"; + mes "1 Striped Bandana,"; + mes "10 Peco Feathers,"; mes "and 10,000 Zeny."; next; mes "[Merunte]"; @@ -32,8 +35,10 @@ comodo.gat,238,217,5 script Merunte 832,{ next; menu "Yep!",-,"Nope!",M_EXIT; - if ((countitem(925) < 100) || (Zeny < 10000)) GOTO L_NOITEM;//Items: Bill of Birds, - delitem 925,100;//Items: Bill of Birds, + if ((countitem(7101) < 10) || (countitem(5049) < 1) || (countitem(2210) < 1) || (Zeny < 10000)) GOTO L_NOITEM;//Items: Peco Feather, Striped Bandana, Hair Band, + delitem 2210,1;//Items: Hair Band, + delitem 5049,1;//Items: Striped Bandana, + delitem 7101,10;//Items: Peco Feather, set Zeny,Zeny-10000; getitem 5071,1;//Items: Indian Headband, mes "[Merunte]"; |