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/indian_headband.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/indian_headband.txt')
-rw-r--r-- | npc/quests/newgears/indian_headband.txt | 44 |
1 files changed, 27 insertions, 17 deletions
diff --git a/npc/quests/newgears/indian_headband.txt b/npc/quests/newgears/indian_headband.txt index 2b7fe68e6..e5a945170 100644 --- a/npc/quests/newgears/indian_headband.txt +++ b/npc/quests/newgears/indian_headband.txt @@ -1,8 +1,8 @@ -//===== eAthena Script ======================================= +//===== eAthena Script ======================================= //= Indian Headband Quest //===== By: ================================================== -//= Halca (1.0) -//= Mass Zero (1.1) +//= Halca (1.0), Mass Zero (1.1) +//= Lupus (1.2) //===== Current Version: ===================================== //= 1.1 //===== Compatible With: ===================================== @@ -10,7 +10,8 @@ //===== Description: ========================================= //= Seperate Indian Headband quest. //===== Additional Comments: ================================= -//= +//= 1.2 Fixed wrong labels, added missing text, fixed +//= items count [Lupus] //============================================================ comodo.gat,238,217,5 script Merunte 832,{ @@ -18,25 +19,34 @@ comodo.gat,238,217,5 script Merunte 832,{ mes "Well, umbaga umbumbaga."; mes "I like to do stuff like that!"; mes "And I love Indian Headbands too!"; - next; + next; + menu "Make me an Indian Headband!",-,"Bye!",M_EXIT; + mes "[Merunte]"; - mes "Give me:"; + mes "Ok. Gimme:"; mes "100 Bill of Birds,"; mes "and 10,000 Zeny."; - next; + next; mes "[Merunte]"; mes "Got these items?"; - next; - menu "Yep!",-,"Nope!",EXT; - if ((countitem(925) < 1) || (Zeny < 10000)) GOTO EXT; - delitem 925,1; - set Zeny,Zeny-10000; - getitem 5071,1; + 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, + set Zeny,Zeny-10000; + getitem 5071,1;//Items: Indian Headband, mes "[Merunte]"; mes "Thanks! Bye."; - close; -EXT: + close; + +L_NOITEM: + mes "[Merunte]"; + mes "Ya miss some items or zeny."; + close; + +M_EXIT: mes "[Merunte]"; mes "Kay bye."; - close; -}
\ No newline at end of file + close; +} |