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
|
//===== eAthena Script =======================================
//= Bear Hat Quest
//===== By: ==================================================
//= Halca (1.0)
//= Mass Zero (1.1)
//===== Current Version: =====================================
//= 1.1
//===== Compatible With: =====================================
//= Any eAthena Version.
//===== Description: =========================================
//= Seperate Bear hat quest.
//===== Additional Comments: =================================
//=
//============================================================
xmas.gat,156,152,3 script Bora 826,{
mes "[Bora]";
mes "Don't bears have such a cute expression on their faces?";
mes "And I bet you wouldn't mind one of those vute expressions yourself!";
next;
mes "[Bora]";
mes "Well, I can make you one!";
next;
menu "Yes, make me one now!",NN,"What are the requirements?",REQ,"No, thanks.",EXT;
MN:
mes "[Bora]";
mes "Yay! now I can make my famous Bear Hat!";
mes "Now, give me your items!";
next;
delitem 5030,1;
delitem 7213,100;
delitem 7217,100;
delitem 7167,300;
mes "[Bora]";
mes "Now I will give you the hat!";
next;
getitem 5059,1;
mes "[Bora]";
mes "Thanks, and bye!";
close;
REQ:
mes "[Bora]";
mes "Bring me...";
mes "1 Panda Hat,";
mes "100 Stabbing Needles,";
mes "100 Spool of Thread";
mes "300 Zippers.";
next;
mes "[Bora]";
mes "For the Stabbing Needles and Spool of Thread,";
mes "Hyzoloists in Niflheim drop those, I believe.";
close;
EX_NI:
mes "[Bora]";
mes "Sorry, I want all the items I asked.";
mes "Please dont try to cheat me.";
close;
EXT:
mes "[Bora]";
mes "Okay, well, byebye!";
close;
}
|