OSDN Git Service

First version
[st-ro/stro.git] / npc / re / guides / guides_niflheim.txt
1 //===== rAthena Script ======================================= 
2 //= Niflheim Guide
3 //===== By: ================================================== 
4 //= L0ne_W0lf
5 //===== Current Version: ===================================== 
6 //= 1.2
7 //===== Compatible With: ===================================== 
8 //= rAthena Project
9 //===== Description: ========================================= 
10 //= [Official Conversion]
11 //= Guide for the city of Niflheim.
12 //===== Additional Comments: ================================= 
13 //= 1.0 First version, Renewal guide.
14 //= 1.1 Optimized. [Euphy]
15 //= 1.2 Navigation system update. [Euphy]
16 //============================================================ 
17
18 niflheim,201,187,3      script  Niflheim Guide#01nif    849,{
19         mes "[Niflheim Guide]";
20         mes "Welcome to.. ^8B4513Niflheim^000000...";
21         mes "the Realm of the Dead...";
22         mes "Do you need help navigating the realm...?";
23         if (F_Navi() == 0) {
24                 next;
25                 mes "[Niflheim Guide]";
26                 mes "When you click on the.. ^B9062F[location name]^000000... you'll receive the most advanced ^B9062FNavigation^000000 services...!";
27         }
28         while (1) {
29                 next;
30                 switch(select("[ Tool Shop ]:[ Pub ]:[ Weapon Shop ]:[ Witch's Castle ]:Remove Marks from Mini-Map:Cancel")) {
31                 case 1:
32                         callsub L_Mark, F_Navi("Tool Shop","niflheim,218,196","^0000FF");
33                         viewpoint 1,218,196,0,0x0A82FF;
34                         break;
35                 case 2:
36                         callsub L_Mark, F_Navi("Pub","niflheim,189,208","^006400");
37                         viewpoint 1,189,208,1,0xAAFF00;
38                         break;
39                 case 3:
40                         callsub L_Mark, F_Navi("Weapon Shop","niflheim,218,170","^800080");
41                         viewpoint 1,218,170,2,0xDA70D6;
42                         break;
43                 case 4:
44                         callsub L_Mark, F_Navi("Witch's Castle","niflheim,255,195","^FF1493");
45                         viewpoint 1,255,195,3,0xFF1493;
46                         break;
47                 case 5:
48                         mes "[Niflheim Guide]";
49                         mes "Sure, I'll remove all marks from your mini-map...";
50                         mes "Is there anything else I can do for you...?";
51                         viewpoint 2,1,1,0,0xFFFFFF;
52                         viewpoint 2,1,1,1,0xFFFFFF;
53                         viewpoint 2,1,1,2,0xFFFFFF;
54                         viewpoint 2,1,1,3,0xFFFFFF;
55                         break;
56                 case 6:
57                         mes "[Niflheim Guide]";
58                         mes "......Bye~!..";
59                         close;
60                 }
61         }
62         end;
63 L_Mark:
64         mes "[Niflheim Guide]";
65         mes "Let me mark the location of the";
66         mes getarg(0)+"^000000...";
67         mes "on your mini-map.";
68         mes "Would you like to check any other locations?";
69         return;
70 }