1 | //===== eAthena Script ======================================= |
---|
2 | //= Amatsu Guides |
---|
3 | //===== By: ================================================== |
---|
4 | //= MasterOfMuppets; L0ne_W0lf |
---|
5 | //===== Current Version: ===================================== |
---|
6 | //= 1.3 |
---|
7 | //===== Compatible With: ===================================== |
---|
8 | //= eAthena SVN |
---|
9 | //===== Description: ========================================= |
---|
10 | //= [Aegis Conversion] |
---|
11 | //= Guides for the City of Amatsu |
---|
12 | //===== Additional Comments: ================================= |
---|
13 | //= 1.0 First version [MasterOfMuppets] |
---|
14 | //= 1.1 Removed Duplicates [Silent] |
---|
15 | //= 1.3 Rescripted to Aegis 10.3 standards. [L0ne_W0lf] |
---|
16 | //============================================================ |
---|
17 | |
---|
18 | amatsu,207,89,3 script Amatsu Guide#ama 758,{ |
---|
19 | mes "[Amachang]"; |
---|
20 | mes "Welcome to Amatsu,"; |
---|
21 | mes "the town of kind towners"; |
---|
22 | mes "and beautiful cherry blossoms."; |
---|
23 | next; |
---|
24 | mes "[Amachang]"; |
---|
25 | mes "I'm Amachang,"; |
---|
26 | mes "the 13th Miss Amatsu."; |
---|
27 | mes "I will guide you about town"; |
---|
28 | mes "as Miss Amatsu."; |
---|
29 | mes "Please tell me"; |
---|
30 | mes "if you want to know something."; |
---|
31 | next; |
---|
32 | switch(select("Palace:Tool Shop:Weapon Shop:Bar")) { |
---|
33 | case 1: |
---|
34 | viewpoint 1,85,235,0,0xFF3355; |
---|
35 | mes "[Amachang]"; |
---|
36 | mes "On the mini-map,"; |
---|
37 | mes "go to ^FF3355+^000000"; |
---|
38 | mes "to find the Palace."; |
---|
39 | mes "Have a good time"; |
---|
40 | mes "in Amatsu."; |
---|
41 | close; |
---|
42 | case 2: |
---|
43 | viewpoint 1,96,118,1,0xCE6300; |
---|
44 | mes "[Amachang]"; |
---|
45 | mes "On the mini-map,"; |
---|
46 | mes "go to ^CE6300+^000000"; |
---|
47 | mes "to find the Tool Shop."; |
---|
48 | mes "Have a good time"; |
---|
49 | mes "in Amatsu."; |
---|
50 | close; |
---|
51 | case 3: |
---|
52 | viewpoint 1,132,117,2,0x55FF33; |
---|
53 | mes "[Amachang]"; |
---|
54 | mes "On the mini-map,"; |
---|
55 | mes "go to ^55FF33+^000000"; |
---|
56 | mes "to find the Weapon Shop."; |
---|
57 | mes "Have a good time"; |
---|
58 | mes "in Amatsu."; |
---|
59 | close; |
---|
60 | case 4: |
---|
61 | viewpoint 1,217,116,3,0x3355FF; |
---|
62 | mes "[Amachang]"; |
---|
63 | mes "On the mini-map,"; |
---|
64 | mes "go to ^3355FF+^000000"; |
---|
65 | mes "to find the Bar."; |
---|
66 | mes "Have a good time"; |
---|
67 | mes "in Amatsu."; |
---|
68 | close; |
---|
69 | } |
---|
70 | } |
---|
71 | |
---|
72 | amatsu,251,283,4 script Guide Man#2ama 767,{ |
---|
73 | mes "[Guide Man]"; |
---|
74 | mes "Welcome, tourist from Rune-Midgard."; |
---|
75 | mes "I'm the guide of"; |
---|
76 | mes "our beautiful town, Amatsu."; |
---|
77 | next; |
---|
78 | mes "[Guide Man]"; |
---|
79 | mes "What are you looking for?"; |
---|
80 | next; |
---|
81 | switch(select("Palace:Tool Shop:Weapon Shop:Bar")) { |
---|
82 | case 1: |
---|
83 | viewpoint 1,85,235,0,0xFF3355; |
---|
84 | mes "[Guide Man]"; |
---|
85 | mes "On the mini-map,"; |
---|
86 | mes "go to ^FF3355+^000000"; |
---|
87 | mes "to find the Palace."; |
---|
88 | mes "Have a good time"; |
---|
89 | mes "in Amatsu."; |
---|
90 | close; |
---|
91 | case 2: |
---|
92 | viewpoint 1,96,118,1,0xCE6300; |
---|
93 | mes "[Guide Man]"; |
---|
94 | mes "On the mini-map,"; |
---|
95 | mes "go to ^CE6300+^000000"; |
---|
96 | mes "to find the Tool Shop."; |
---|
97 | mes "Have a good time"; |
---|
98 | mes "in Amatsu."; |
---|
99 | close; |
---|
100 | case 3: |
---|
101 | viewpoint 1,132,117,2,0x55FF33; |
---|
102 | mes "[Guide Man]"; |
---|
103 | mes "On the mini-map,"; |
---|
104 | mes "go to ^55FF33+^000000"; |
---|
105 | mes "to find the Weapon Shop."; |
---|
106 | mes "Have a good time"; |
---|
107 | mes "in Amatsu."; |
---|
108 | close; |
---|
109 | case 4: |
---|
110 | viewpoint 1,217,116,3,0x3355FF; |
---|
111 | mes "[Guide Man]"; |
---|
112 | mes "On the mini-map,"; |
---|
113 | mes "go to ^3355FF+^000000"; |
---|
114 | mes "to find the Bar."; |
---|
115 | mes "Have a good time"; |
---|
116 | mes "in Amatsu."; |
---|
117 | close; |
---|
118 | } |
---|
119 | } |
---|