1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
//===== eAthena Script =======================================
//= Al De Baran Guides
//===== By: ==================================================
//= kobra_k88
//===== Current Version: =====================================
//= 1.5
//===== Compatible With: =====================================
//= eAthena 7.15 +
//===== Description: =========================================
//=
//===== Additional Comments: =================================
//= Corrected building locations and descriptions
//= 1.2 Optimized, updated common guide names [Lupus]
//= 1.3 Updated the guide according to how it is on iRO, thanks [MasterOfMuppets]
//= to Muad_Dib
//= 1.4 Fitted the many lines into 1 or 2, and corrected some typos [erKURITA]
//= 1.5 Removed Duplicates [Silent]
//============================================================
aldebaran,139,63,4 script Soldier::Alde_Guide 105,{
cutin "prt_soldier",2;
mes "[Al De Baran Guard]";
mes "I'm just an ordinary guard that you could find in any other city.";
mes "I don't think I even have a name...";
next;
mes "[Al De Baran Guard]";
mes "I am in charge of the Service Guides from the Al De Baran Garrison.";
mes "Let me guide you through our town!";
next;
menu "Get location Guide.",-,"End conversation.",L_End;
viewpoint 1,57,222,1,0xFF6633;
viewpoint 1,73,196,2,0x0000FF;
viewpoint 1,224,224,3,0x00FFFF;
viewpoint 1,233,106,4,0x515151;
viewpoint 1,197,71,5,0x3355FF;
viewpoint 1,60,60,6,0xFF5555;
mes "^FF6633+^000000 -> Kafra Main Office";
mes "^0000FF+^000000 -> Weapon Shop";
mes "^00FFFF+^000000 -> Sorcerer Guild (Closed)";
mes "^515151+^000000 -> Pub";
mes "^3355FF+^000000 -> Item Shop";
mes "^FF5555+^000000 -> Chemical Academy";
cutin "prt_soldier",255;
close;
L_End:
mes "[Al De Baran Guard]";
mes "We are sworn to protect Al De Baran! May the forces of evil always be crushed by the righteous fist of good!";
cutin "prt_soldier",255;
close;
}
aldebaran,241,136,4 duplicate(Alde_Guide) Soldier#Alde02 105
|