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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
//===== eAthena Script =======================================
//= Amatsu Guides
//===== By: ==================================================
//= MasterOfMuppets
//===== Current Version: =====================================
//= 1.1
//===== Compatible With: =====================================
//=
//===== Description: =========================================
//=
//===== Additional Comments: =================================
//= 1.0 First version [MasterOfMuppets]
//= 1.1 Removed Duplicates [Silent]
//============================================================
amatsu.gat,207,89,3 script Amatsu Guide#01 758,{
mes "[Amachang]";
mes "Welcome to Amatsu,";
mes "the town of kind towners";
mes "and beatiful cherry blossoms.";
next;
mes "[Amachang]";
mes "I'm Amachang,";
mes "the 13th Miss Amatsu.";
mes "I will guide you about town";
mes "as Miss Amatsu.";
mes "Please tell me";
mes "if you want to know something.";
next;
menu "Palace",-,"Tool Shop",s_Tool,"Weapon Shop",s_Weap,"Bar",s_Bar;
viewpoint 1,85,235,1,0xFF0044;
mes "[Amachang]";
mes "On the mini-map,";
mes "go to ^FF0044+^000000";
mes "to find the Palace.";
mes "Have a good time";
mes "in Amatsu.";
close;
s_Tool:
viewpoint 1,96,117,2,0xFF9200;
mes "[Amachang]";
mes "On the mini-map,";
mes "go to ^FF9200+^000000";
mes "to find the Tool Shop.";
mes "Have a good time";
mes "in Amatsu.";
close;
s_Weap:
viewpoint 1,132,117,3,0x85FF00;
mes "[Amachang]";
mes "On the mini-map,";
mes "go to ^85FF00+^000000";
mes "to find the Weapon Shop.";
mes "Have a good time";
mes "in Amatsu.";
close;
s_Bar:
viewpoint 1,216,116,4,0x3366FF;
mes "[Amachang]";
mes "On the mini-map,";
mes "go to ^3366FF+^000000";
mes "to find the Bar.";
mes "Have a good time";
mes "in Amatsu.";
close;
}
amatsu.gat,251,283,4 script Amatsu Guide#02 767,{
mes "[Guide Man]";
mes "Welcome, tourist from";
mes "Rune-Midgard.";
mes "I'm the guide of";
mes "out beautiful town, Amatsu.";
next;
mes "[Guide Man]";
mes "What are you looking for?";
next;
menu "Palace",-,"Tool Shop",s_Tool,"Weapon Shop",s_Weap,"Bar",s_Bar;
viewpoint 1,85,235,1,0xFF0044;
mes "[Guide Man]";
mes "On the mini-map,";
mes "go to ^FF0044+^000000";
mes "to find the Palace.";
mes "Have a good time";
mes "in Amatsu.";
close;
s_Tool:
viewpoint 1,96,117,2,0xFF9200;
mes "[Guide Man]";
mes "On the mini-map,";
mes "go to ^FF9200+^000000";
mes "to find the Tool Shop.";
mes "Have a good time";
mes "in Amatsu.";
close;
s_Weap:
viewpoint 1,132,117,3,0x85FF00;
mes "[Guide Man]";
mes "On the mini-map,";
mes "go to ^85FF00+^000000";
mes "to find the Weapon Shop.";
mes "Have a good time";
mes "in Amatsu.";
close;
s_Bar:
viewpoint 1,216,116,4,0x3366FF;
mes "[Guide Man]";
mes "On the mini-map,";
mes "go to ^3366FF+^000000";
mes "to find the Bar.";
mes "Have a good time";
mes "in Amatsu.";
close;
}
|