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
94
95
96
97
98
99
100
101
|
//===== eAthena Script =======================================
//= Neris (New Hat Quests)
//===== By: ==================================================
//= Halca (1.0)
//= Mass Zero (1.1)
//===== Current Version: =====================================
//= 1.1
//===== Compatible With: =====================================
//= Any eAthena Version.
//===== Description: =========================================
//= Seperate New Hat quests.
//===== Additional Comments: =================================
//=
//============================================================
yuno.gat,21,17,7 script Neris 806,{
mes "[Neris]";
mes "So, whatcha want then?";
next;
menu "Large Golden Bell.",LGB,"Crown of Mistress.",COM,"Crown of Ancient Queen.",COAQ;
LGB:
mes "[Neris]";
mes "Hehe, so you are a fan of Sohee's eh?";
mes "Yeah, I guess I like the bell they carry too!";
next;
mes "[Neris]";
mes "Looks pretty cute when you wear it.";
mes "So... what can I do for you?";
menu "Make me the golden bell!",-,"What do I need to make it?",REQL,"Nothing, thanks.",EXT;
if ((countitem(10016) < 1) || (countitem(714) < 1) || (countitem(969) < 3) || (Zeny < 1000)) GOTO EX_NR;
mes "[Neris]";
mes "Now, lets swap your items.";
next;
delitem 10016,1;
delitem 714,1;
delitem 969,3;
set Zeny,Zeny-1000;
getitem 5091,1;
mes "[Neris]";
mes "Thanks, and bye!";
close;
REQL:
mes "[Neris]";
mes "Okay all these are gold related:";
mes "1 Golden Bell,";
mes "1 Emperium,";
mes "3 Golds,";
mes "1000 Zeny for the labor.";
close;
COM:
mes "[Neris]";
mes "You like mistresses?";
next;
mes "[Neris]";
mes "So... what can I do for you?";
menu "Make me the item.",-,"What do I need to make it?",REQC,"Nothing, thanks.",EXT;
if ((countitem(2249) < 1) || (countitem(714) < 1) || (countitem(969) < 3) || (Zeny < 1000)) GOTO EX_NR;
mes "[Neris]";
mes "Now, lets swap your items.";
next;
delitem 2249,1;
delitem 714,1;
delitem 969,3;
set Zeny,Zeny-1000;
getitem 5081,1;
mes "[Neris]";
mes "Thanks, and bye!";
close;
REQC:
mes "[Neris]";
mes "Okay all these are gold related:";
mes "1 Coronet,";
mes "1 Emperium,";
mes "3 Golds,";
mes "1000 Zeny for the labor.";
close;
COAQ:
mes "[Neris]";
mes "You like ancient queens?";
next;
mes "[Neris]";
mes "So.. what can I do for you?";
menu "Make me the item.",-,"What do I need to make it?",REQC,"Nothing, thanks.",EXT;
if ((countitem(10006) < 1) || (countitem(714) < 1) || (countitem(969) < 3) || (Zeny < 1000)) GOTO EX_NR;
mes "[Neris]";
mes "Now, lets swap your items";
next;
delitem 10006,1;
delitem 714,1;
delitem 969,3;
set Zeny,Zeny-1000;
getitem 5080,1;
mes "[Neris]";
mes "Thanks, and bye!";
close;
EX_NR:
mes "[Neris]";
mes "Don't take me for a fool!";
mes "No items, no deal!";
close;
}
|