OSDN Git Service

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