OSDN Git Service

First version
[st-ro/stro.git] / npc / re / guides / guides_rachel.txt
1 //===== rAthena Script ======================================= 
2 //= Rachel Guides
3 //===== By: ================================================== 
4 //= L0ne_W0lf
5 //===== Current Version: ===================================== 
6 //= 1.1
7 //===== Compatible With: ===================================== 
8 //= rAthena Project
9 //===== Description: ========================================= 
10 //= [Official Conversion]
11 //= Guide for the city of Rachel.
12 //===== Additional Comments: ================================= 
13 //= 1.0 First version, Renewal guide.
14 //= 1.1 Navigation system update. [Euphy]
15 //============================================================ 
16
17 rachel,138,146,5        script  Rachel Guide#rachel     934,{
18         mes "[Rachel Guide]";
19         mes "Welcome to the capital of Arunafeltz, ^8B4513Rachel^000000 where the warm breath of the goddess Freya reaches.";
20         mes "If this is the first time for you to use the guide services, I suggest you ask many questions.";
21         F_Navi("[Rachel Guide]");
22         next;
23         while (1) {
24                 switch(select("[ Main Facilities ]:[ Merchants & Helpers ]:Remove Marks from Mini-Map:Cancel")) {
25                 case 1:
26                         set .@loop,1;
27                         while (.@loop) {
28                                 switch(select("[ Inn ]:[ Weapon Shop ]:[ Tool Shop ]:[ Airport ]:[ Cheshrumnir ]:[ Priest Zed's Mansion ]:Previous Menu")) {
29                                 case 1:
30                                         mes "[Rachel Guide]";
31                                         mes "You can rest your fatigue of the journey in the "+F_Navi("Inn","rachel,115,144")+". The left building next to me is the Inn of Rachel.";
32                                         mes "Would you like to check any other locations?";
33                                         viewpoint 1,115,144,0,0xFF0000;
34                                         next;
35                                         break;
36                                 case 2:
37                                         mes "[Rachel Guide]";
38                                         mes "Do you want to check out the weapons that are sold in Rachel? The "+F_Navi("Weapon Shop","rachel,42,82")+" is located near the west gate.";
39                                         mes "Would you like to check any other locations?";
40                                         viewpoint 1,42,82,1,0xFF4500;
41                                         next;
42                                         break;
43                                 case 3:
44                                         mes "[Rachel Guide]";
45                                         mes "Rachel's "+F_Navi("Tool Shop","rachel,83,73")+" sells the best quality potions. It's located near the west gate.";
46                                         mes "Would you like to check any other locations?";
47                                         viewpoint 1,83,73,2,0xDAA520;
48                                         next;
49                                         break;
50                                 case 4:
51                                         mes "[Rachel Guide]";
52                                         mes "The "+F_Navi("Airport","rachel,272,125")+" is located outside of the east gate.";
53                                         mes "Would you like to check any other locations?";
54                                         viewpoint 1,272,125,3,0x008000;
55                                         next;
56                                         break;
57                                 case 5:
58                                         mes "[Rachel Guide]";
59                                         mes F_Navi("Cheshrumnir","rachel,150,243")+" is a holy ground where pope, the incarnation of goddess Freya stays.";
60                                         mes "Take the road to the north to find the building.";
61                                         mes "Would you like to check any other locations?";
62                                         viewpoint 1,150,243,4,0x0000FF;
63                                         next;
64                                         break;
65                                 case 6:
66                                         mes "[Rachel Guide]";
67                                         mes "I will mark the location";
68                                         mes "of the "+F_Navi("Priest Zed's Mansion","rachel,98,238","^000080");
69                                         mes "on your mini-map.";
70                                         mes "Would you like to check any other locations?";
71                                         viewpoint 1,98,238,5,0x000080;
72                                         next;
73                                         break;
74                                 case 7:
75                                         set .@loop,0;
76                                         break;
77                                 }
78                         }
79                         break;
80                 case 2:
81                         set .@loop,1;
82                         while (.@loop) {
83                                 switch(select("[ Cool Event Corp. Staff ]:[ Eden Teleport Officer ]:Previous Menu")) {
84                                 case 1:
85                                         mes "[Rachel Guide]";
86                                         mes "I will mark the location";
87                                         mes "of the "+F_Navi("Cool Event Corp. Staff","rachel,110,138","^803232");
88                                         mes "on your mini map.";
89                                         mes "Would you like to check any other locations?";
90                                         viewpoint 1,110,138,7,0x803232;
91                                         next;
92                                         break;
93                                 case 2:
94                                         mes "[Rachel Guide]";
95                                         mes "I will mark the location";
96                                         mes "of the "+F_Navi("Eden Teleport Officer","rachel,125,144","^556B2F");
97                                         mes "on your mini-map.";
98                                         mes "Would you like to check any other locations?";
99                                         viewpoint 1,125,144,8,0x556B2F;
100                                         next;
101                                         break;
102                                 case 3:
103                                         set .@loop,0;
104                                         break;
105                                 }
106                         }
107                         break;
108                 case 3:
109                         mes "[Rachel Guide]";
110                         mes "Sure, I'll remove all marks from your mini-map.";
111                         mes "Is there anything else I can do for you?";
112                         viewpoint 2,115,144,0,0xFFFFFF;
113                         viewpoint 2,42,82,1,0xFFFFFF;
114                         viewpoint 2,83,73,2,0xFFFFFF;
115                         viewpoint 2,272,125,3,0xFFFFFF;
116                         viewpoint 2,150,243,4,0xFFFFFF;
117                         viewpoint 2,98,238,5,0xFFFFFF;
118                         viewpoint 2,110,138,7,0xFFFFFF;
119                         viewpoint 2,125,144,8,0xFFFFFF;
120                         next;
121                         break;
122                 case 4:
123                         mes "[Rachel Guide]";
124                         mes "Have a safe journey!";
125                         close;
126                 }
127         }
128 }