1 | //===== eAthena Script ======================================= |
---|
2 | //= Al De Baran Guides |
---|
3 | //===== By: ================================================== |
---|
4 | //= kobra_k88; L0ne_W0lf |
---|
5 | //===== Current Version: ===================================== |
---|
6 | //= 1.6a |
---|
7 | //===== Compatible With: ===================================== |
---|
8 | //= eAthena 7.15 + |
---|
9 | //===== Description: ========================================= |
---|
10 | //= [Aegis conversion] |
---|
11 | //= Guides for the City of Al De Baran |
---|
12 | //===== Additional Comments: ================================= |
---|
13 | //= Corrected building locations and descriptions |
---|
14 | //= 1.2 Optimized, updated common guide names [Lupus] |
---|
15 | //= 1.3 Updated the guide according to how it is on iRO, thanks [MasterOfMuppets] |
---|
16 | //= to Muad_Dib |
---|
17 | //= 1.4 Fitted the many lines into 1 or 2, and corrected some typos [erKURITA] |
---|
18 | //= 1.5 Removed Duplicates [Silent] |
---|
19 | //= 1.6 Rescripted to Aegis 10.3 standards. [L0ne_W0lf] |
---|
20 | //= 1.6a Changed some "close"s to "close2"s. (bugreport:1597) [Samuray22] |
---|
21 | //============================================================ |
---|
22 | |
---|
23 | aldebaran,139,63,4 script Soldier#alde 105,{ |
---|
24 | cutin "prt_soldier",2; |
---|
25 | mes "[Al De Baran Guard]"; |
---|
26 | mes "I'm just an ordinary guard"; |
---|
27 | mes "that you could find in any other city. I don't think I even have a name..."; |
---|
28 | next; |
---|
29 | mes "[Al De Baran Guard]"; |
---|
30 | mes "I am in charge of the Service Guides from the Al De Baran Garrison. Let me guide you"; |
---|
31 | mes "through our town!"; |
---|
32 | next; |
---|
33 | if (select("Get Location Guide.:End conversation.") == 1) { |
---|
34 | viewpoint 1,30,210,0,0xFF6633; |
---|
35 | viewpoint 1,52,180,1,0x0000FF; |
---|
36 | viewpoint 1,210,210,2,0x00FFFF; |
---|
37 | viewpoint 1,218,84,3,0x515151; |
---|
38 | viewpoint 1,178,54,4,0x3355FF; |
---|
39 | viewpoint 1,36,36,5,0xFF5555; |
---|
40 | mes "^FF6633+^000000 -> Kafra Main Office "; |
---|
41 | mes "^0000FF+^000000 -> Weapon Shop "; |
---|
42 | mes "^00FFFF+^000000 -> Sorcerer Guild (Closed)"; |
---|
43 | mes "^515151+^000000 -> Pub"; |
---|
44 | mes "^3355FF+^000000 -> Item Shop"; |
---|
45 | mes "^FF5555+^000000 -> Alchemist Guild"; |
---|
46 | close2; |
---|
47 | cutin "prt_soldier",255; |
---|
48 | end; |
---|
49 | } |
---|
50 | mes "[Al De Baran Guard]"; |
---|
51 | mes "We are sworn to protect Al De Baran! May the forces of evil always be crushed by the"; |
---|
52 | mes "righteous fist of good!"; |
---|
53 | close2; |
---|
54 | cutin "prt_soldier",255; |
---|
55 | end; |
---|
56 | } |
---|
57 | |
---|
58 | aldebaran,133,108,4 script Soldier#2alde 105,{ |
---|
59 | cutin "prt_soldier",2; |
---|
60 | mes "[Al De Baran Guard]"; |
---|
61 | mes "I'm just an"; |
---|
62 | mes "ordinary guard,"; |
---|
63 | mes "the kind you can"; |
---|
64 | mes "find in any other city."; |
---|
65 | next; |
---|
66 | mes "[Al De Baran Guard]"; |
---|
67 | mes "When I'm not too busy"; |
---|
68 | mes "protecting the Al De Baran"; |
---|
69 | mes "populace, I'm here giving directions to adventurers"; |
---|
70 | mes "like yourself."; |
---|
71 | next; |
---|
72 | switch(select("Kafra Main Office :Weapon Shop :Sorcerer Guild :Pub :Item Shop :Alchemist Guild :End Conversation ")) { |
---|
73 | case 1: |
---|
74 | viewpoint 1,30,210,0,0xFF66; |
---|
75 | mes "^FF6633+^000000 -> Kafra Main Office "; |
---|
76 | break; |
---|
77 | case 2: |
---|
78 | viewpoint 1,52,180,1,0x0000FF; |
---|
79 | mes "^0000FF+^000000 -> Weapon Shop "; |
---|
80 | break; |
---|
81 | case 3: |
---|
82 | viewpoint 1,210,210,2,0x00FFFF; |
---|
83 | mes "^00FFFF+^000000 -> Sorcerer Guild (Closed)"; |
---|
84 | break; |
---|
85 | case 4: |
---|
86 | viewpoint 1,218,84,3,0x515151; |
---|
87 | mes "^515151+^000000 -> Pub "; |
---|
88 | break; |
---|
89 | case 5: |
---|
90 | viewpoint 1,178,54,4,0x3355FF; |
---|
91 | mes "^3355FF+^000000 -> Item Shop "; |
---|
92 | break; |
---|
93 | case 6: |
---|
94 | viewpoint 1,36,36,5,0xFF5555; |
---|
95 | mes "^FF5555+^000000 -> Alchemist Guild"; |
---|
96 | break; |
---|
97 | case 7: |
---|
98 | mes "[Al De Baran Guard]"; |
---|
99 | mes "We are sworn to"; |
---|
100 | mes "protect Al De Baran!"; |
---|
101 | mes "May the forces of good"; |
---|
102 | mes "always prevail over evil~"; |
---|
103 | break; |
---|
104 | } |
---|
105 | close2; |
---|
106 | cutin "prt_soldier",255; |
---|
107 | end; |
---|
108 | } |
---|