summaryrefslogtreecommitdiff
path: root/npc/quests/newgears/tulip_hairpin.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/quests/newgears/tulip_hairpin.txt')
-rw-r--r--npc/quests/newgears/tulip_hairpin.txt48
1 files changed, 31 insertions, 17 deletions
diff --git a/npc/quests/newgears/tulip_hairpin.txt b/npc/quests/newgears/tulip_hairpin.txt
index fc9c1cd5a..8c4dc327e 100644
--- a/npc/quests/newgears/tulip_hairpin.txt
+++ b/npc/quests/newgears/tulip_hairpin.txt
@@ -4,46 +4,60 @@
//= Halca (1.0)
//= Mass Zero (1.1)
//===== Current Version: =====================================
-//= 1.1
+//= 1.2
//===== Compatible With: =====================================
//= Any eAthena Version.
//===== Description: =========================================
//= Seperate Tulip Hairpin quest.
//===== Additional Comments: =================================
-//=
+//= 1.2 Fixed wrong labels, added missing text [Lupus]
//============================================================
prontera.gat,84,189,6 script Ses 815,{
mes "[Ses]";
+ If (Class == 0) GOTO L_NOVICE;
mes "Woo, hello! Fruit fruit!";
mes "Sorry, I just love flowers, fruits and everything that makes me";
mes "look more FRUITY!";
- next;
- menu "Shh, just make me the Tulip Hairpin!",-,"What do I need for the Tulip Hairpin?",TH_REQ,"Bye!",EXIT;
+ next;
+ menu "Make me a Tulip Hairpin!",-,"What do I need?",M_REQ,"Bye!",M_EXIT;
+
mes "[Ses]";
mes "You have the items?";
- next;
- menu "Yes!",-,"No!",EXIT;
- If ((countitem(2278) < 1) || (countitem(975) < 1)) GOTO EX_NM;
+ next;
+ menu "Yes!",-,"No!",M_EXIT;
+
+ If ((countitem(2278) < 1) || (countitem(975) < 1)) GOTO L_NOITEM;//Items: Mr. Smile, Scarlet Dyestuffs,
mes "[Ses]";
mes "Yay! thanks! Pineapple!";
mes "Here you go!";
- next;
- delitem 2278,1;
- delitem 975,1;
- getitem 5077,1;
+ next;
+ delitem 2278,1;//Items: Mr. Smile,
+ delitem 975,1;//Items: Scarlet Dyestuffs,
+ getitem 5077,1;//Items: Tulip Hairpin,
mes "[Ses]";
mes "Enjoy being pretty!";
- close;
-TH_REQ:
+ close;
+
+L_NOITEM:
+ mes "[Ses]";
+ mes "You don't have enough items for a Tulip Hairpin!";
+ next;
+
+M_REQ:
mes "[Ses]";
mes "Well, I need...";
mes "1 Mr. Smile for the substance";
- mes "and 1 scarlet dyestuff!";
+ mes "and 1 scarlet Dyestuff!";
mes "Bring these to me for your item!";
- close;
-EXIT:
+ close;
+
+L_NOVICE:
+ mes "I love flowers... Do you love flowers, too?";
+ close;
+
+M_EXIT:
mes "[Ses]";
mes "Okay!";
mes "Byeeeee!";
-} \ No newline at end of file
+}