summaryrefslogtreecommitdiff
path: root/npc/quests/quests_aldebaran.txt
blob: b21bd96013472dfe79de823455b68fe95c19cda7 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
//===== eAthena Script ======================================= 
//= Item Quest NPCs located in Aldebaran 
//===== By: ================================================== 
//=
//===== Current Version: ===================================== 
//= 1.1
//===== Compatible With: ===================================== 
//= eAthena 7.15 +
//===== Description: ========================================= 
//= 'Doctor Band', 'Feather Bonnet', 'Opera Masque', 'Sakkat Hat' Quests.
//===== Additional Comments: ================================= 
//= Fully working
//= 1.1 Fixed Doctor Band items [Lupus]
//============================================================ 


//=======================================================================================================//
//			'Doctor Band', 'Feather Bonnet', 'Opera Masque', 'Sakkat Hat' Quest
//=======================================================================================================//
aldeba_in.gat,152,166,4	script	Trader	86,{
	mes "[Trader]";
	mes "Muhahaha! I am the Very Famous Enigmatic Dealer! I am always hustling and bustling in and out of Rune Midgard!";
	mes "Take a look at my RARE and UNIQUE items from ALL OVER the WORLD!!";
	next;
	mes "(1) � ^3355FFDoctor Band^000000 :";
	mes "^FF55331 Red Bandana + 50 Iron + 1 Cracked Diamond + 3500 Zeny^000000.";
	mes "(2) � ^3355FFFeather Bonnet^000000 :";
	mes "^FF55331 Romantic Gent + 300 Feather of Birds + 500 Zeny^000000.";
	mes "(3) � ^3355FFOpera Masque^000000 :";
	mes "^FF553320 Iron + 1 Singing Plant + 5000 Zeny^000000.";
	mes "(4) � ^3355FFSakkat Hat^000000 :";
	mes "^FF5533120 Trunk + 10000 Zeny^000000.";
	next;
	menu "Doctor Band",M_0, "Feather Bonnet",M_1, "Opera Masque",M_2, "Sakkat",M_3;
		
	M_0:
		mes "[Trader]";
		if ((countitem(2275) == 0) || (countitem(998) < 50) || (Zeny < 3500)) goto L_CantMake; //Items: Red Bandana, Iron,
		delitem 2275,1;//Items: Red Bandana,
		delitem 998,50;//Items: Iron,
		set Zeny,Zeny - 3500;
		mes "Hmm.... Do you have a.... MEDICAL LICENSE?!";
		emotion 1;
		next;
		mes "[Trader]";
		mes "I've heard about a well-known unlicensed physician 'Cuwaki'... I hope you don't get caught....";
		mes "Anyways it's your own buisness what you do... Take this.";
		getitem 2273,1;//Items: Doctor Band,
		close;
	M_1:
		mes "[Trader]";
		if ((countitem(2247) == 0) || (countitem(916) < 300) || (Zeny < 500)) goto L_CantMake;//Items: Romantic Gent, Feather of Birds,
		delitem 2247,1;//Items: Romantic Gent,
		delitem 916,300;//Items: Feather of Birds,
		set Zeny,Zeny - 500;
		mes "Umhahaha. You have good fashion sense.  I know you had a hard time collecting these items, but this bonnet is definately worth it.  Take it.";
		emotion 18;
		getitem 5018,1;//Items: Feather Bonnet,
		close;
	M_2:
		mes "[Trader]";
		if ((countitem(998) < 20) || (countitem(707) == 0) || (Zeny < 5000)) goto L_CantMake;//Items: Iron, Singing Plant,
		delitem 998,20;//Items: Iron,
		delitem 707,1;//Items: Singing Plant,
		set Zeny,Zeny - 5000;
		mes "This is a pretty nice item.  A little bit creepy looking though.... I think it gives off some kinda weird vibe.  What do you think?";
		next;
		mes "[Trader]";
		mes ".. You like it ..Alright.. Take it!";
		getitem 2281,1;//Items: Opera Masque,
		close;
	M_3:
		mes "[Trader]";
		if ((countitem(1019) < 120) || (Zeny < 10000)) goto L_CantMake;//Items: Trunk,
		delitem 1019,120;//Items: Trunk,
		set Zeny,Zeny - 10000;
		mes "If you have a chance to visit the Village of Payon, please go meet the Sakkat Craftsman.";
		mes "He's never sold a Sakkat to any other dealer but to me.";
		next;
		mes "[Trader]";
		mes "Because only I can recognize a Sakkat hats' quality.  Due to the fact that it's so rare, the Sakkat Hat has become a very popular item!";
		next;
		mes "[Trader]";
		mes "OK! Take it!";
		getitem 2280,1;//Items: Sakkat,
		close;

	L_CantMake:
		mes "You, fool! Check the requirements again..... you're not some kinda idiot are you? C'mon..... give me a break.";
		emotion 6;
		close;
}