root/npc/guides/guides_juno.txt @ 23

Revision 1, 3.8 kB (checked in by jinshiro, 17 years ago)
Line 
1//===== eAthena Script =======================================
2//= Yuno Guides
3//===== By: ==================================================
4//= KitsuneStarwind, usul, kobra_k88; L0ne_W0lf
5//===== Current Version: =====================================
6//= 1.7
7//===== Compatible With: =====================================
8//= eAthena SVN
9//===== Description: =========================================
10//= [Aegis Conversion]
11//= Guides for the City of Juno
12//===== Additional Comments: =================================
13//= Edited Miss Yoon text. Added town soldiers by usul. Edited town soldiers
14//= and added map location option for them. [kobra_k88]
15//= 1.1 Changed sprites and cutins to Schwarzwald Republic ones
16//= 1.2 Optimized, updated common guide names [Lupus]
17//= 1.3 Updated the mini map localization function. [Musashiden]
18//= 1.4 Juno Guides are now up to date according to iRO. [Musashiden]
19//= 1.5 Removed Duplicates [Silent].
20//= 1.6 Changed one of the Juno soldier's sprite. [Musashiden]
21//= 1.7 Rescripted to Aegis 10.3 standards. [L0ne_W0lf]
22//============================================================
23
24yuno,153,47,4   script  Juno Guide#yuno 700,{
25        mes "[Ms. Yoon]";
26        mes "A place that takes the vision of the future, and gives it form in the present. Welcome to";
27        mes "the city of Juno!";
28        next;
29        switch(select("Armory:Tool Shop:Sage Castle (Sage Job Change Place):Street of Book Stores:Juphero Plaza:Library of the Republic:Schweicherbil Magic Academy:Monster Museum:Forge:Airport:End Conversation")) {
30        case 1:
31                viewpoint 1,120,138,0,0xFF3355;
32                mes "[Ms. Yoon]";
33                mes "Please look";
34                mes "at the mini map.";
35                mes "^FF3355+^000000 -> Armory";
36                mes "Thank you,";
37                mes "have a good day.";
38                close;
39        case 2:
40                viewpoint 1,193,142,1,0x3355FF;
41                mes "[Ms. Yoon]";
42                mes "Please look";
43                mes "at the mini map.";
44                mes "^3355FF+^000000 -> Tool Shop";
45                mes "Thank you,";
46                mes "have a good day.";
47                close;
48        case 3:
49                viewpoint 1,90,318,2,0x33FF55;
50                mes "[Ms. Yoon]";
51                mes "Please look";
52                mes "at the mini map.";
53                mes "^33FF55+^000000 -> Sage Castle";
54                mes "( Sage Job Change Place )";
55                mes "Thank you, have a good day.";
56                close;
57        case 4:
58                viewpoint 1,257,102,3,0xFF3355;
59                mes "[Ms. Yoon]";
60                mes "Please look";
61                mes "at the mini map.";
62                mes "^FF3355+^000000 -> Street of Book Stores";
63                mes "Thank you, have a good day.";
64                close;
65        case 5:
66                viewpoint 1,157,170,4,0x3355FF;
67                mes "[Ms. Yoon]";
68                mes "Please look";
69                mes "at the mini map.";
70                mes "^3355FF+^000000 -> Juphero Plaza";
71                mes "Thank you,";
72                mes "have a good day.";
73                close;
74        case 6:
75                viewpoint 1,336,204,5,0x33FF55;
76                mes "[Ms. Yoon]";
77                mes "Please look";
78                mes "at the mini map.";
79                mes "^33FF55+^000000 -> Library of the Republic";
80                mes "Thank you, have a good day.";
81                close;
82        case 7:
83                viewpoint 1,323,281,6,0xFF3355;
84                mes "[Ms. Yoon]";
85                mes "Please look at the mini map.";
86                mes "^FF3355+^000000 -> Schweicherbil Magic Academy";
87                mes "Thank you, have a good day.";
88                close;
89        case 8:
90                viewpoint 1,278,288,7,0x3355FF;
91                mes "[Ms. Yoon]";
92                mes "Please look at the mini map.";
93                mes "^3355FF+^000000 -> Monster Museum";
94                mes "Thank you, have a good day.";
95                close;
96        case 9:
97                viewpoint 1,120,138,8,0xFF3355;
98                mes "[Ms. Yoon]";
99                mes "Please look at the mini map.";
100                mes "^FF3355+^000000 -> Forge";
101                mes "The forge is located underneath Armory.";
102                mes "Thank you, have a good day.";
103                close;
104        case 10:
105                viewpoint 1,53,214,9,0xFF3355;
106                mes "[Ms. Yoon]";
107                mes "Please look at the mini map.";
108                mes "^FF3355+^000000 -> Airport";
109                mes "Thank you, have a good day.";
110                close;
111        case 11:
112                mes "[Ms. Yoon]";
113                mes "A great city of wise men.";
114                mes "A city of Knowledge!";
115                mes "Welcome to Juno.";
116                close;
117        }
118}
Note: See TracBrowser for help on using the browser.