summaryrefslogtreecommitdiff
path: root/npc/custom/quests/magicalhatquest.txt
blob: 69fb423902812ce93eec529becf5484625deceb7 (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
//===== eAthena Script =======================================
//= Wizard Hat Custom Quest
//===== By: ==================================================
//= Who
//===== Current Version: =====================================
//= 1.1
//===== Compatible With: =====================================
//= eAthena
//===== Description: =========================================
//= Wizard Hat quest. Harmless, doesn't screw game balance.
//===== Additional Comments: =================================
//= 1.1 Reversed ingreadients and the quest result due to
//= 	treasue boxes drops fix [Lupus] 
//============================================================

geffen.gat,126,107,5	script	Wizard Hat Dude	51,{
	mes "[Wizard Hat Dude]";
	mes "Huh! What do you want?";
	mes "Ohh, I see, you want me to make you something.";
	emotion e_what;
	next;
	mes "[Wizard Hat Dude]";
	mes "Well if you want this Wizard Hat here is a list of the items I need you to go out and get them for me:";
	mes "1 Magican Hat";
	mes "1 Bathory Card";
	mes "and 200,000z for my efforts"; 
	next;
	mes "[Wizard Hat Dude]";
	mes "Are you ready for me to make this magical item?";
	next;
	menu "Sure am!",-,"These requirements are unfathomable!",M_RIPOFF;

	mes "[Wizard Hat Dude]";
	if(countitem(5045) < 1 || countitem(4119) < 1 || Zeny < 200000) goto L_NotEnough;
	delitem 5045,1;
	delitem 4119,1;
	set Zeny,Zeny-200000;
	mes "Wow!  You are brave indeed!";
	emotion e_no1;
	next;
	mes "[Wizard Hat Dude]";
	mes "Enjoy your Wizard Hat!";
	getitem 2252,1;
	close;

L_NotEnough:
	mes ". . .I'm sorry .. You don't have enough money and items ..";
	mes "I can't afford to make this if you don't bring all materials needed.  Please understand this is to benefit heroes such as yourself!";
	emotion e_sry;
	close;

M_RIPOFF:
	mes "[Wizard Hat Dude]";
	mes "What I had to go through was more unfathomable..";
	mes "If you succeed in getting these items, you will have incredible strength!";
	emotion e_hmm;
	close;
}