guides_alb.txt 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. //===== eAthena Script =======================================
  2. //= Alberta Guides
  3. //===== By: ==================================================
  4. //= kobra_k88
  5. //===== Current Version: =====================================
  6. //= 1.1
  7. //===== Compatible With: =====================================
  8. //= eAthena 0.5.2 +
  9. //===== Description: =========================================
  10. //=
  11. //===== Additional Comments: =================================
  12. //= Fully working
  13. //= v1.1 Now using duplicate command.
  14. //============================================================
  15. // North --------------------------------------------------------
  16. alberta.gat,23,238,4 script Guide#1::Guide 105,{
  17. cutin "prt_soldier",2;
  18. mes "[Alberta Soldier]";
  19. mes "Welcome to Alberta, the Port Town.";
  20. next;
  21. mes "[Alberta Soldier]";
  22. mes "We are here to help you find your way. Please feel free to speak to us anytime.";
  23. mes "Oh, and if you're a newbie you should read the notice first.";
  24. M_Menu:
  25. next;
  26. menu "View Buildings",M_1, "Notice",M_2, "Cancel",M_End;
  27. M_1:
  28. mes "[Alberta Soldier]";
  29. mes "Do you want me to leave indications on the Mini-Map?";
  30. next;
  31. menu "No Thanks",sM_1a,"Yes Please",sM_1b;
  32. sM_1a:
  33. set @COMPASS_CHECK,0;
  34. goto L_Cont;
  35. sM_1b:
  36. set @COMPASS_CHECK,1;
  37. L_Cont:
  38. mes "[Alberta Soldier]";
  39. mes "Please choose a building to view.";
  40. next;
  41. sM_Menu:
  42. menu "^FF0000Merchant Guild^000000",sM_2a,"Armory",sM_2b,"Item Shop",sM_2c,"Inn",sM_2d, "Wipe all indications from mini-map.",sM_2e, "Cancel",M_End;
  43. sM_2a:
  44. mes "[Alberta Soldier]";
  45. mes "The 'Merchant Guild' is located in the SouthWestern part of town. The Merchant Guild is the place to go to become a merchant.";
  46. viewpoint 1,33,41,1,0xFF0000;
  47. goto sL_Wipe;
  48. sM_2b:
  49. mes "[Alberta Soldier]";
  50. mes "The 'Armory' is located in the Southern part of town. Go there to buy weapons and armor.";
  51. viewpoint 1,148,57,2,0x6666FF;
  52. goto sL_Wipe;
  53. sM_2c:
  54. mes "[Alberta Soldier]";
  55. mes "The 'Item Shop' is located in the Centre of town.";
  56. viewpoint 1,98,154,3,0xFF00FF;
  57. goto sL_Wipe;
  58. sM_2d:
  59. mes "[Alberta Soldier]";
  60. mes "There are 2 'Inns' located in the Northern and Southern parts of town. Go there if you need to rest.";
  61. viewpoint 1,65,233,4,0xF5AD05;
  62. viewpoint 1,136,38,5,0xF5AD05;
  63. goto sL_Wipe;
  64. sM_2e:
  65. set @COMPASS_CHECK, 2;
  66. sL_Wipe:
  67. if(@COMPASS_CHECK != 2) next;
  68. if(@COMPASS_CHECK == 1) goto sM_Menu;
  69. viewpoint 2,33,41,1,0xFF0000;
  70. viewpoint 2,148,57,2,0x6666FF;
  71. viewpoint 2,98,154,3,0xFF00FF;
  72. viewpoint 2,65,233,4,0xF5AD05;
  73. viewpoint 2,136,38,5,0xF5AD05;
  74. if(@COMPASS_CHECK == 0) goto sM_Menu;
  75. mes "[Alberta Soldier]";
  76. mes "All indications have been removed";
  77. cutin "prt_soldier",255;
  78. close;
  79. M_2:
  80. mes "[Alberta Soldier]";
  81. mes "We upgraded the Location Guide to the newest Digital Style. We hope you like this gorgeous new system.";
  82. next;
  83. mes "[Alberta Soldier]";
  84. mes "Don't forget to refer to the Mini-Map on the Upper-Right corner of your screen.";
  85. next;
  86. mes "[Alberta Soldier]";
  87. 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";
  88. mes "Remeber to use the ^ff0000+,-^000000 buttons to adjust the map to your liking.";
  89. goto M_Menu;
  90. M_End:
  91. mes "[Alberta Soldier]";
  92. mes "Ta Ta.";
  93. cutin "prt_soldier",255;
  94. close;
  95. }
  96. // South --------------------------------------------------------
  97. alberta.gat,120,60,3 duplicate(Guide) Guide#2 105