diff options
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]"; |