guides_alde.txt 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. //===== eAthena Script =======================================
  2. //= Al De Baran Guides
  3. //===== By: ==================================================
  4. //= kobra_k88; L0ne_W0lf
  5. //===== Current Version: =====================================
  6. //= 1.6
  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. //============================================================
  21. aldebaran,139,63,4 script Soldier#alde 105,{
  22. cutin "prt_soldier",2;
  23. mes "[Al De Baran Guard]";
  24. mes "I'm just an ordinary guard";
  25. mes "that you could find in any other city. I don't think I even have a name...";
  26. next;
  27. mes "[Al De Baran Guard]";
  28. mes "I am in charge of the Service Guides from the Al De Baran Garrison. Let me guide you";
  29. mes "through our town!";
  30. next;
  31. if (select("Get Location Guide.:End conversation.") == 1) {
  32. viewpoint 1,30,210,0,0xFF6633;
  33. viewpoint 1,52,180,1,0x0000FF;
  34. viewpoint 1,210,210,2,0x00FFFF;
  35. viewpoint 1,218,84,3,0x515151;
  36. viewpoint 1,178,54,4,0x3355FF;
  37. viewpoint 1,36,36,5,0xFF5555;
  38. mes "^FF6633+^000000 -> Kafra Main Office ";
  39. mes "^0000FF+^000000 -> Weapon Shop ";
  40. mes "^00FFFF+^000000 -> Sorcerer Guild (Closed)";
  41. mes "^515151+^000000 -> Pub";
  42. mes "^3355FF+^000000 -> Item Shop";
  43. mes "^FF5555+^000000 -> Alchemist Guild";
  44. close;
  45. cutin "prt_soldier",255;
  46. end;
  47. }
  48. mes "[Al De Baran Guard]";
  49. mes "We are sworn to protect Al De Baran! May the forces of evil always be crushed by the";
  50. mes "righteous fist of good!";
  51. close;
  52. cutin "prt_soldier",255;
  53. end;
  54. }
  55. aldebaran,133,108,4 script Soldier#2alde 105,{
  56. cutin "prt_soldier",2;
  57. mes "[Al De Baran Guard]";
  58. mes "I'm just an";
  59. mes "ordinary guard,";
  60. mes "the kind you can";
  61. mes "find in any other city.";
  62. next;
  63. mes "[Al De Baran Guard]";
  64. mes "When I'm not too busy";
  65. mes "protecting the Al De Baran";
  66. mes "populace, I'm here giving directions to adventurers";
  67. mes "like yourself.";
  68. next;
  69. switch(select("Kafra Main Office :Weapon Shop :Sorcerer Guild :Pub :Item Shop :Alchemist Guild :End Conversation ")) {
  70. case 1:
  71. viewpoint 1,30,210,0,0xFF66;
  72. mes "^FF6633+^000000 -> Kafra Main Office ";
  73. break;
  74. case 2:
  75. viewpoint 1,52,180,1,0x0000FF;
  76. mes "^0000FF+^000000 -> Weapon Shop ";
  77. break;
  78. case 3:
  79. viewpoint 1,210,210,2,0x00FFFF;
  80. mes "^00FFFF+^000000 -> Sorcerer Guild (Closed)";
  81. break;
  82. case 4:
  83. viewpoint 1,218,84,3,0x515151;
  84. mes "^515151+^000000 -> Pub ";
  85. break;
  86. case 5:
  87. viewpoint 1,178,54,4,0x3355FF;
  88. mes "^3355FF+^000000 -> Item Shop ";
  89. break;
  90. case 6:
  91. viewpoint 1,36,36,5,0xFF5555;
  92. mes "^FF5555+^000000 -> Alchemist Guild";
  93. break;
  94. case 7:
  95. mes "[Al De Baran Guard]";
  96. mes "We are sworn to";
  97. mes "protect Al De Baran!";
  98. mes "May the forces of good";
  99. mes "always prevail over evil~";
  100. break;
  101. }
  102. close2;
  103. cutin "prt_soldier",255;
  104. end;
  105. }