guides_alde.txt 3.4 KB

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