guides_alde.txt 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. //===== eAthena Script =======================================
  2. //= Al De Baran Guides
  3. //===== By: ==================================================
  4. //= kobra_k88
  5. //===== Current Version: =====================================
  6. //= 1.0a
  7. //===== Compatible With: =====================================
  8. //= eAthena 7.15 +
  9. //===== Description: =========================================
  10. //=
  11. //===== Additional Comments: =================================
  12. //= Corrected building locations and descriptions
  13. //============================================================
  14. aldebaran.gat,139,63,4 script Soldier 105,{
  15. cutin "prt_soldier",2;
  16. mes "[Al De Baran Guard]";
  17. mes "Welcome to Al De Baran, the home of the lovely Kafras!";
  18. next;
  19. mes "[Al De Baran Guard]";
  20. mes "We are here to help you find your way. Please feel free to speak to us anytime.";
  21. M_Menu:
  22. next;
  23. menu "View Buildings",M_1, "Notice",M_2, "Cancel",M_End;
  24. M_1:
  25. mes "[Al De Baran Guard]";
  26. mes "Do you want me to leave indications on the Mini-Map?";
  27. next;
  28. menu "No Thanks",sM_1a,"Yes Please",sM_1b;
  29. sM_1a:
  30. set @COMPASS_CHECK,0;
  31. goto L_Cont;
  32. sM_1b:
  33. set @COMPASS_CHECK,1;
  34. L_Cont:
  35. mes "[Al De Baran Guard]";
  36. mes "Please choose a building to view.";
  37. next;
  38. sM_Menu:
  39. menu "^FF0000Kafra Main Office^000000",sM_2a, "Armory",sM_2b, "Item Shop",sM_2c, "Pub",sM_2d,
  40. "^00AAFFSorcerer Guild (Closed)^000000",sM_2e, "^DDAA00Chemical Academy^000000",sM_2f,
  41. "Wipe all indications from mini-map",sM_2g, "Cancel", M_End;
  42. sM_2a:
  43. mes "[Al De Baran Guard]";
  44. mes "The 'Kafra Main Office' is the place where you can redeem your special researve points.";
  45. viewpoint 1,56,225,1,0xFF0000;
  46. goto sL_Wipe;
  47. sM_2b:
  48. mes "[Al De Baran Guard]";
  49. mes "Go to the 'Armory' to buy weapons and armor.";
  50. viewpoint 1,72,194,2,0x0000FF;
  51. goto sL_Wipe;
  52. sM_2c:
  53. mes "[Al De Baran Guard]";
  54. mes "The 'Item Shop' has all sort of usefull tools for you to buy.";
  55. viewpoint 1,197,68,3,0x00FF00;
  56. goto sL_Wipe;
  57. sM_2d:
  58. mes "[Al De Baran Guard]";
  59. mes "Stop by the 'Pub' to relax and have a drink.";
  60. viewpoint 1,231,107,4,0xFF00FF;
  61. goto sL_Wipe;
  62. sM_2e:
  63. mes "[Al De Baran Guard]";
  64. mes "The 'Sorcerer Guild' is closed right now.";
  65. //viewpoint 1,48,198,5,0x00AAFF;
  66. goto sL_Wipe;
  67. sM_2f:
  68. mes "[Al De Baran Guard]";
  69. mes "The ^DDAA00'Chemical Academy'^000000 is where Merchants go to become Alchemists.";
  70. viewpoint 1,58,61,6,0xDDAA00;
  71. goto sL_Wipe;
  72. sM_2g:
  73. set @COMPASS_CHECK, 2;
  74. sL_Wipe:
  75. if(@COMPASS_CHECK != 2) next;
  76. if(@COMPASS_CHECK == 1) goto sM_Menu;
  77. viewpoint 2,56,225,1,0xFF0000;
  78. viewpoint 2,72,194,2,0x0000FF;
  79. viewpoint 2,197,68,3,0x00FF00;
  80. viewpoint 2,231,107,4,0xFF00FF;
  81. viewpoint 2,48,198,5,0x00AAFF;
  82. viewpoint 2,58,61,6,0xDDAA00;
  83. if (@COMPASS_CHECK == 0) goto sM_Menu;
  84. mes "[Al De Baran Guard]";
  85. mes "All indications have been removed";
  86. cutin "prt_soldier",255;
  87. close;
  88. M_2:
  89. mes "[Al De Baran Guard]";
  90. mes "We upgraded the Location Guide to the Newest Digital Style. We hope you like this gorgeous new system.";
  91. next;
  92. mes "[Al De Baran Guard]";
  93. mes "Don't forget to refer to the Mini-Map on the Upper-Right corner of your screen.";
  94. next;
  95. mes "[Al De Baran Guard]";
  96. mes "If you can't see the Mini-Map, just hit ^0000ff'ctrl+tab'^000000 or Click the ^0000ff'map'^000000 button in the Basic Information Window";
  97. mes "Remeber to use the ^ff0000+,-^000000 buttons to adjust the map to your liking.";
  98. goto M_Menu;
  99. M_End:
  100. mes "[Al De Baran Guard]";
  101. mes "Good day.";
  102. cutin "prt_soldier",255;
  103. close;
  104. }