guides_alde.txt 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. //===== eAthena Script =======================================
  2. //= Al De Baran Guides
  3. //===== By: ==================================================
  4. //= kobra_k88; L0ne_W0lf
  5. //===== Current Version: =====================================
  6. //= 1.7
  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. //= 1.7 Fixed viewpoint coordinates [Playtester]
  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,61,229,0,0xFF6633;
  35. viewpoint 1,72,197,1,0x0000FF;
  36. viewpoint 1,223,222,2,0x00FFFF;
  37. viewpoint 1,233,105,3,0x515151;
  38. viewpoint 1,197,70,4,0x3355FF;
  39. viewpoint 1,60,60,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. aldebaran,133,108,4 script Soldier#2alde 105,{
  58. cutin "prt_soldier",2;
  59. mes "[Al De Baran Guard]";
  60. mes "I'm just an";
  61. mes "ordinary guard,";
  62. mes "the kind you can";
  63. mes "find in any other city.";
  64. next;
  65. mes "[Al De Baran Guard]";
  66. mes "When I'm not too busy";
  67. mes "protecting the Al De Baran";
  68. mes "populace, I'm here giving directions to adventurers";
  69. mes "like yourself.";
  70. next;
  71. switch(select("Kafra Main Office :Weapon Shop :Sorcerer Guild :Pub :Item Shop :Alchemist Guild :End Conversation ")) {
  72. case 1:
  73. viewpoint 1,61,229,0,0xFF6633;
  74. mes "^FF6633+^000000 -> Kafra Main Office ";
  75. break;
  76. case 2:
  77. viewpoint 1,72,197,1,0x0000FF;
  78. mes "^0000FF+^000000 -> Weapon Shop ";
  79. break;
  80. case 3:
  81. viewpoint 1,223,222,2,0x00FFFF;
  82. mes "^00FFFF+^000000 -> Sorcerer Guild (Closed)";
  83. break;
  84. case 4:
  85. viewpoint 1,233,105,3,0x515151;
  86. mes "^515151+^000000 -> Pub ";
  87. break;
  88. case 5:
  89. viewpoint 1,197,70,4,0x3355FF;
  90. mes "^3355FF+^000000 -> Item Shop ";
  91. break;
  92. case 6:
  93. viewpoint 1,60,60,5,0xFF5555;
  94. mes "^FF5555+^000000 -> Alchemist Guild";
  95. break;
  96. case 7:
  97. mes "[Al De Baran Guard]";
  98. mes "We are sworn to";
  99. mes "protect Al De Baran!";
  100. mes "May the forces of good";
  101. mes "always prevail over evil~";
  102. break;
  103. }
  104. close2;
  105. cutin "prt_soldier",255;
  106. end;
  107. }