root/npc/guides/guides_nif.txt @ 6

Revision 1, 4.3 kB (checked in by jinshiro, 17 years ago)
Line 
1//===== eAthena Script =======================================
2//= Niflheim Guide
3//===== By: ==================================================
4//= eAthena Team; 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 Niflheim
12//===== Additional Comments: =================================
13//= 1.1 Fixed location command format [Lupus]
14//= 1.2 Optimized, updated common guide names [Lupus]
15//= 1.3 Rescripted to Aegis 10.3 standards. [L0ne_W0lf]
16//============================================================
17
18niflheim,107,156,6      script  Roaming Man#nif 798,{
19        mes "[Ricael]";
20        mes "You must be lost...";
21        mes "Why would anyone come";
22        mes "to this horrid, dreadful";
23        mes "place on purpose...??";
24        next;
25        mes "[Ricael]";
26        mes "Ever since I stumbled fell down into this giant tree, I've suffered endlessly here. I've wasted years in sadness, being unable to escape Niflheim.";
27        next;
28        mes "[Ricael]";
29        mes "But in searching for an";
30        mes "escape route, I probably know";
31        mes "this town better than anyone";
32        mes "else. I guess knowing the";
33        mes "layout might help you escape";
34        mes "if it weren't so futile.";
35        next;
36        switch(select("Ask building locations.:Remove marks on the mini-map.:Cancel.")) {
37        case 1:
38                mes "[Ricael]";
39                mes "So, um, which place do you want to know about?";
40                next;
41                switch(select("Witch's castle:Tool shop:Weapon shop:Pub:Cancel")) {
42                case 1:
43                        mes "[Ricael]";
44                        mes "There. I made a ^FF3355+^000000 mark";
45                        mes "on your mini-map so that you can";
46                        mes "go to the castle where that";
47                        mes "creepy witch lives.";
48                        next;
49                        mes "[Ricael]";
50                        mes "I went there once, but then I";
51                        mes "ran away and decided that I";
52                        mes "should try to not die as much";
53                        mes "as possible. That's pretty";
54                        mes "much my life goal here in";
55                        mes "Niflheim.";
56                        viewpoint 1,253,191,2,0xFF3355;
57                        break;
58                case 2:
59                        mes "[Ricael]";
60                        mes "The Tool shop is located";
61                        mes "at the ^CE6300+^000000 mark I made";
62                        mes "on your mini-map.";
63                        next;
64                        mes "[Ricael]";
65                        mes "They sell some unique items that";
66                        mes "you cannot find outside of this";
67                        mes "town. Of course, they weren't so";
68                        mes "special once I realized no";
69                        mes "Potion can ease the pain I feel.";
70                        mes "...I wish I was in prison.";
71                        Emotion e_wah;
72                        viewpoint 1,217,196,3,0xCE6300;
73                        break;
74                case 3:
75                        mes "[Ricael]";
76                        mes "The Weapon shop is located";
77                        mes "at the ^55FF33+^000000 mark I made";
78                        mes "on your mini-map.";
79                        next;
80                        mes "[Ricael]";
81                        mes "They sell some unique items which";
82                        mes "you cannot find outside of this";
83                        mes "town... Of course, fighting";
84                        mes "the monsters here will just";
85                        mes "make them angrier. You may as";
86                        mes "well let them eat you.";
87                        Emotion e_wah;
88                        viewpoint 1,216,171,4,0x55FF33;
89                        break;
90                case 4:
91                        mes "[Ricael]";
92                        mes "The Pub is located at";
93                        mes "the ^3355FF+^000000 mark I've made";
94                        mes "on your mini-map.";
95                        next;
96                        mes "[Ricael]";
97                        mes "Sometimes I see dead people in the";
98                        mes "Pub enjoying themselves, having a";
99                        mes "good time. I used to be able to";
100                        mes "have fun once, but now all I feel";
101                        mes "is the cold tingle of loneliness";
102                        mes "and despair...every waking moment.";
103                        viewpoint 1,189,207,5,0x3355FF;
104                        break;
105                case 5:
106                        mes "[Ricael]";
107                        mes "If you want to remove the location";
108                        mes "marks from your mini-map, please";
109                        mes "choose 'Remove marks on the";
110                        mes "mini-map' from the menu.";
111                }
112                break;
113        case 2:
114                viewpoint 2,253,191,2,0xFF3355;
115                viewpoint 2,217,196,3,0xCE6300;
116                viewpoint 2,216,171,4,0x55FF33;
117                viewpoint 2,189,207,5,0x3355FF;
118                mes "[Ricael]";
119                mes "I removed the location marks from";
120                mes "your mini-map. Go ahead and ask";
121                mes "me if you want to mark the";
122                mes "building locations again. It";
123                mes "helps me ignore the depression";
124                mes "that gnaws at me constantly.";
125                break;
126        case 3:
127                mes "[Ricael]";
128                mes "It's not a good idea to search";
129                mes "Niflheim by yourself...";
130                mes "At least try to be careful.";
131                break;
132        }
133        close;
134}
Note: See TracBrowser for help on using the browser.