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/back_ribbon.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/back_ribbon.txt')
-rw-r--r-- | npc/quests/newgears/back_ribbon.txt | 51 |
1 files changed, 27 insertions, 24 deletions
diff --git a/npc/quests/newgears/back_ribbon.txt b/npc/quests/newgears/back_ribbon.txt index 13dceb938..11a9bd457 100644 --- a/npc/quests/newgears/back_ribbon.txt +++ b/npc/quests/newgears/back_ribbon.txt @@ -4,55 +4,58 @@ //= Halca (1.0) //= Mass Zero (1.1) //===== Current Version: ===================================== -//= 1.1 +//= 1.2 //===== Compatible With: ===================================== //= Any eAthena Version. //===== Description: ========================================= //= Seperate Back Ribbon quest. //===== Additional Comments: ================================= -//= +//= 1.2 Fixed wrong labels, added missing text [Lupus] //============================================================ prontera.gat,164,232,5 script Netpia 815,{ mes "[Netpia]"; mes "Wheee! Don't you just love making youself look pretty!?"; mes "I love glamourising myself with all the best accessories!"; - next; + next; mes "[Netpia]"; mes "Ever heard of a ^560000Back Ribbon^000000?"; mes "I can make you one, and you too can be fashionable!"; - next; - menu "Please make me a ^670000Back ribbon^000000.",-,"What are the requirements?",BR_REQ,"No, I dont want one.",EXT; - If ((countitem(2244) < 1) || (countitem(2209) < 1) || (countitem(10007) < 1)) GOTO BR_NM; + next; + menu "Make me a ^670000Back ribbon^000000.",-,"What are the requirements?",M_REQ,"No, I dont want one.",M_EXIT; + + If ((countitem(2244) < 1) || (countitem(2209) < 1) || (countitem(10007) < 1)) GOTO L_NOITEM;//Items: Big Ribbon, Ribbon, Silk Ribbon, mes "[Netpia]"; mes "Wow, thank you! Let me just take your items."; - next; - delitem 2244,1; - delitem 2209,1; - delitem 10007,1; - getitem 5083,1; + next; + delitem 2244,1;//Items: Big Ribbon, + delitem 2209,1;//Items: Ribbon, + delitem 10007,1;//Items: Silk Ribbon, + getitem 5083,1;//Items: Back Ribbon, mes "[Netpia]"; mes "Okay, now here is your item."; - next; + next; mes "[Netpia]"; mes "Enjoy being pretty!"; - close; -BR_NM: + close; + +L_NOITEM: mes "[Netpia]"; mes "Aww... sorry, but I cant make it If you don't bring me the materials."; - next; - GOTO BR_REQ; -BR_REQ: + next; + +M_REQ: mes "[Netpia]"; mes "Well, for me to make you my BEAUTIFUL Back Ribbon..."; mes "I require these materials:"; - mes "1 big ribbon."; - mes "1 ribbon (Slotted)."; - mes "1 silk ribbon."; - close; -EXT: + mes "1 Big Ribbon."; + mes "1 Ribbon (Slotted)."; + mes "1 Silk Ribbon."; + close; + +M_EXIT: mes "[Netpia]"; mes "Aww, well, okay then!"; mes "Be pretty some other time"; - close; -}
\ No newline at end of file + close; +} |