12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- //===== eAthena Script =======================================
- //= Al De Baran Guides
- //===== By: ==================================================
- //= kobra_k88
- //===== Current Version: =====================================
- //= 1.4
- //===== 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]
- //============================================================
- aldebaran.gat,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.gat,241,136,4 duplicate(Alde_Guide) Soldier 105
|