guides_alb.txt 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. //===== eAthena Script =======================================
  2. //= Alberta Guides
  3. //===== By: ==================================================
  4. //= kobra_k88
  5. //===== Current Version: =====================================
  6. //= 1.4
  7. //===== Compatible With: =====================================
  8. //= eAthena 0.5.2 +
  9. //===== Description: =========================================
  10. //=
  11. //===== Additional Comments: =================================
  12. //= Fully working
  13. //= 1.1 Fixed Armory coords, thanks to Freya team
  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. //============================================================
  19. //North
  20. alberta.gat,23,238,4 script Guide::Alb_Guide 105,{
  21. cutin "prt_soldier",2;
  22. mes "[Alberta Guide]";
  23. mes "Welcome to Alberta, the Port City.";
  24. mes "Feel free to ask me if you're having trouble finding anything in town, or if you just need guidance around the city.";
  25. L_MENU:
  26. next;
  27. menu "City Guide",L_CITY,"Remove Marks from Mini-Map",L_REMOVE,"Notice",L_NOTICE,"Cancel",L_END;
  28. L_CITY:
  29. mes "[Alberta Guide]";
  30. mes "Please select a location from the following menu.";
  31. mes "Would you like me to mark locations on your Mini-Map?";
  32. next;
  33. menu "Yes.",L_YES,"No.",L_NO;
  34. L_NO:
  35. set @COMPASS_CHECK,0;
  36. goto L_CONT;
  37. L_YES:
  38. set @COMPASS_CHECK,1;
  39. L_CONT:
  40. L_MENU_2:
  41. menu "^FF0000Merchant Guild^000000",L_MERCHANT,"Weapon Shop",L_WEAPON,"Tool Shop",L_TOOL,"Inn",L_INN,"Forge",L_FORGE,"Cancel",-;
  42. mes "[Alberta Guide]";
  43. mes "Please ask me to Remove marks from Mini-Map if you no longer wish to have the location marks displayed on your Mini-Map.";
  44. goto L_MENU;
  45. L_MERCHANT:
  46. mes "[Alberta Guide]";
  47. mes "The Merchant Guild, handles Job Changes to the Merchant Class, and is located in the southwest corner of Alberta.";
  48. viewpoint 1,33,41,1,0xFF0000;
  49. next;
  50. goto L_WIPE;
  51. L_WEAPON:
  52. mes "[Alberta Guide]";
  53. mes "The Weapon Shop can be found in the southern end of Alberta.";
  54. viewpoint 1,117,37,2,0xFF00FF;
  55. next;
  56. goto L_WIPE;
  57. L_TOOL:
  58. mes "[Alberta Guide]";
  59. mes "The Tool Shop is kind of close to the center of Alberta. It shouldn't be too hard to find.";
  60. viewpoint 1,98,154,3,0xFF00FF;
  61. next;
  62. goto L_WIPE;
  63. L_INN:
  64. mes "[Alberta Guide]";
  65. mes "There's and Inn at the northern end of Alberta where you can rest.";
  66. viewpoint 1,65,233,4,0xFF00FF;
  67. next;
  68. goto L_WIPE;
  69. L_FORGE:
  70. mes "[Alberta Guide]";
  71. mes "The Forge in Alberta is in the same building as the Merchant Guild. It's to the southwest.";
  72. viewpoint 1,33,41,5,0xFF00FF;
  73. next;
  74. goto L_WIPE;
  75. L_WIPE:
  76. if(@COMPASS_CHECK == 1)goto L_MENU_2;
  77. viewpoint 2,33,41,1,0xFF0000;
  78. viewpoint 2,117,37,2,0xFF00FF;
  79. viewpoint 2,98,154,3,0xFF00FF;
  80. viewpoint 2,65,233,4,0xFF00FF;
  81. viewpoint 2,33,41,5,0xFF00FF;
  82. goto L_MENU_2;
  83. L_REMOVE:
  84. viewpoint 2,33,41,1,0xFF0000;
  85. viewpoint 2,117,37,2,0xFF00FF;
  86. viewpoint 2,98,154,3,0xFF00FF;
  87. viewpoint 2,65,233,4,0xFF00FF;
  88. viewpoint 2,33,41,5,0xFF00FF;
  89. goto L_MENU;
  90. L_NOTICE:
  91. mes "[Alberta Guide]";
  92. mes "Advances in sorcery and technology have allowed us to update our information system, enabling up to mark locations on your Mini-Map for easier navigation.";
  93. next;
  94. mes "[Alberta Guide]";
  95. mes "Your Mini-Map is located in the upper right corner of the screen.";
  96. mes "If you can't see it, press the Ctrl + Tab keys or click the 'Map' button in your Basic Information Window.";
  97. next;
  98. mes "[Alberta Guide]";
  99. mes "On your Mini-Map, click on the '+' and '-' symbols to zoom in and out of your Mini-Map.";
  100. mes "We hope you enjoy your travels here in the city of Alberta.";
  101. goto L_MENU;
  102. L_END:
  103. mes "[Alberta Guide]";
  104. mes "Be safe when you travel and don't hesitate to ask me if you have any questions about Alberta.";
  105. cutin "prt_soldier",255;
  106. close;
  107. }
  108. // South --------------------------------------------------------
  109. alberta.gat,120,60,3 duplicate(Alb_Guide) Guide#2 105