root/npc/guides/guides_um.txt @ 1

Revision 1, 4.0 kB (checked in by jinshiro, 17 years ago)
Line 
1//===== eAthena Script =======================================
2//= Umbala Guides
3//===== By: ==================================================
4//= Dizzy, Translated by Celest; L0ne_W0lf
5//===== Current Version: =====================================
6//= 1.5
7//===== Compatible With: =====================================
8//= eAthena SVN
9//===== Description: =========================================
10//= Guide for the City of Umbala
11//===== Additional Comments: =================================
12//= 1.1 Fixed location command format [Lupus]
13//= 1.2 Optimized, updated common guide names [Lupus]
14//= 1.4 Fitted the many lines into 1 or 2, and corrected some typos [erKURITA]
15//= 1.5 Rescripted to Aegis 10.3 standards. [L0ne_W0lf]
16//= 1.6 Corrected activating ontouch. [L0ne_W0lf]
17//============================================================
18
19umbala,128,94,4 script  Adventurer#um   702,{
20        mes "[Adventurer]";
21        mes "This is a very strange place...";
22        mes "It's underdeveloped, and there";
23        mes "are a number of complex, winding paths...";
24        next;
25        mes "[Adventurer]";
26        mes "However, since I have been here";
27        mes "for months, I am familiar with";
28        mes "this area's geography and points";
29        mes "of interest in this village.";
30        mes "You're welcome to ask me about the";
31        mes "locations of buildings.";
32        next;
33        switch(select("Locations of buildings.:Remove marks on the mini map.:Quit.")) {
34        case 1:
35                mes "[Adventurer]";
36                mes "So, which one do you want to check?";
37                next;
38                switch(select("Chief's House:Shaman's House:Weapon Shop:Tool Shop:Bungee Jump Place:Cancel")) {
39                case 1:
40                        mes "[Adventurer]";
41                        mes "I have made a ^FF3355+^000000 mark";
42                        mes "on your mini map.";
43                        next;
44                        mes "[Adventurer]";
45                        mes "Only the chief knows the language";
46                        mes "of the outside world. So you'd";
47                        mes "better visit him before anything else.";
48                        viewpoint 1,66,250,2,0xFF3355;
49                        break;
50                case 2:
51                        mes "[Adventurer]";
52                        mes "I have made a ^CE6300+^000000 mark";
53                        mes "on your mini map.";
54                        next;
55                        mes "[Adventurer]";
56                        mes "The Utan Shaman has some";
57                        mes "sort of mystic power...";
58                        mes "People say she can create rough";
59                        mes "enchanted stones, and divide a";
60                        mes "pure enchanted stone into rough ones.";
61                        viewpoint 1,217,186,3,0xCE6300;
62                        break;
63                case 3:
64                        mes "[Adventurer]";
65                        mes "I have made a ^55FF33+^000000 mark";
66                        mes "on your mini map.";
67                        next;
68                        mes "[Adventurer]";
69                        mes "The Utans are usually well armed";
70                        mes "in preparation for attacks from";
71                        mes "their enemies. Apparently, they";
72                        mes "have been attacked from the outside many times in the past.";
73                        viewpoint 1,126,154,4,0x55FF33;
74                        break;
75                case 4:
76                        mes "[Adventurer]";
77                        mes "I have made a ^3355FF+^000000 mark";
78                        mes "on your mini map.";
79                        next;
80                        mes "[Adventurer]";
81                        mes "There are many useful things for";
82                        mes "traveling in the Tool Shop, so why don't you go look around?";
83                        viewpoint 1,136,127,5,0x3355FF;
84                        break;
85                case 5:
86                        mes "[Adventurer]";
87                        mes "I have made a ^00FF00+^000000 mark";
88                        mes "on your mini map.";
89                        next;
90                        mes "[Adventurer]";
91                        mes "Umbala has a unique locale called";
92                        mes "the 'Bungee Jump Place'.";
93                        mes "If you're interested in testing";
94                        mes "your courage, why don't you go";
95                        mes "and partake in this Utan";
96                        mes "ritual yourself?";
97                        viewpoint 1,139,198,6,0x00FF00;
98                        break;
99                case 6:
100                        mes "[Adventurer]";
101                        mes "If you want to remove the location";
102                        mes "marks on your mini map, please";
103                        mes "choose 'Remove marks on the mini map' menu.";
104                }
105                break;
106        case 2:
107                viewpoint 2,66,250,2,0xFF3355;
108                viewpoint 2,217,186,3,0xCE6300;
109                viewpoint 2,126,154,4,0x55FF33;
110                viewpoint 2,136,127,5,0x3355FF;
111                viewpoint 2,139,198,6,0x00FF00;
112                mes "[Adventurer]";
113                mes "I removed all the marks from your";
114                mes "mini map. Feel free to ask me";
115                mes "again if you want me to mark building locations.";
116                break;
117        case 3:
118                mes "[Adventurer]";
119                mes "It's fun to learn Utan culture on your own. Take care.";
120                break;
121        }
122        close;
123}
Note: See TracBrowser for help on using the browser.