summaryrefslogtreecommitdiff
path: root/npc/quests/newgears/tulip_hairpin.txt
blob: db2b5af4ed95e5c0212a4d35d945f47b2f0b88f1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
//===== eAthena Script ======================================= 
//= Tulip Hairpin Quest
//===== By: ================================================== 
//= Halca (1.0)
//= Mass Zero (1.1)
//===== Current Version: ===================================== 
//= 1.1
//===== Compatible With: ===================================== 
//= Any eAthena Version.
//===== Description: ========================================= 
//= Seperate Tulip Hairpin quest.
//===== Additional Comments: ================================= 
//=
//============================================================

prontera.gat,84,189,6	script	Ses	815,{
 mes "[Ses]";
 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;
 mes "[Ses]";
 mes "You have the items?";
	next;
	menu "Yes!",-,"No!",EXIT;
		If ((countitem(2278) < 1) || (countitem(975) < 1)) GOTO EX_NM;
 mes "[Ses]";
 mes "Yay! thanks! Pineapple!";
 mes "Here you go!";
	next;
		delitem 2278,1;
		delitem 975,1;
		getitem 5077,1;
 mes "[Ses]";
 mes "Enjoy being pretty!";
	close;
TH_REQ:
 mes "[Ses]";
 mes "Well, I need...";
 mes "1 Mr. Smile for the substance";
 mes "and 1 scarlet dyestuff!";
 mes "Bring these to me for your item!";
	close;
EXIT:
 mes "[Ses]";
 mes "Okay!";
 mes "Byeeeee!";
}