guides_einbe.txt 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. //===== eAthena Script =======================================
  2. //= Einbech Guides
  3. //===== By: ==================================================
  4. //= Muad_dib
  5. //===== Current Version: =====================================
  6. //= 1.4a
  7. //===== Compatible With: =====================================
  8. //= eAthena 7.15 +
  9. //===== Description: =========================================
  10. //=
  11. //===== Additional Comments: =================================
  12. //= 1.0 Einbech guide by Muad_dib in prometheus format
  13. //= 1.0a Conversion to eA format [MasterOfMuppets]
  14. //= 1.1 missing tabs [Lupus]
  15. //= 1.2 Optimized, updated common guide names [Lupus]
  16. //= 1.3 Fitted the many lines into 1 or 2, and corrected some typos [erKURITA]
  17. //= 1.4 Removed Duplicates [Silent]
  18. //= 1.4a missing tabs [KarLaeda]
  19. //============================================================
  20. einbech.gat,67,37,4 script Guide#1::Einbech_Guide 852,{
  21. cutin "ein_soldier",2;
  22. mes "[Einbech Guide]";
  23. mes "Welcome to Einbech, the Mining Town.";
  24. mes "We're here to assist tourists, so if you have any questions, please feel free to ask us.";
  25. L_MENU:
  26. next;
  27. menu "City Guide",-,"Remove Marks from Mini-Map",L_REMOVE,"Notice",L_NOTICE,"Cancel",L_END;
  28. mes "[Einbech Guide]";
  29. mes "Please select a location from the following menu.";
  30. mes "Would you like me to mark locations on your Mini-Map?";
  31. next;
  32. menu "Yes.",L_YES,"No.",-;
  33. set @COMPASS_CHECK,0;
  34. goto L_CONT;
  35. L_YES:
  36. set @COMPASS_CHECK,1;
  37. L_CONT:
  38. L_MENU_2:
  39. menu "Train Station",L_TRAIN,"Tavern",L_TAVERN,"Tool Shop",L_TOOL,"Swordman Guild",L_SWORD,"Mine",L_MINE,"Cancel",-;
  40. mes "[Einbech Guide]";
  41. 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.";
  42. goto L_MENU;
  43. L_TRAIN:
  44. mes "[Einbech Guide]";
  45. mes "The Train Stations are located in the nortwest and northeast parts of Einbech.";
  46. mes "There, you can take a train to Einbroch. They are running between here and Einbroch all day long, everyday.";
  47. viewpoint 1,44,216,1,0xFF0000;
  48. next;
  49. goto L_WIPE;
  50. L_TAVERN:
  51. mes "[Einbech Guide]";
  52. mes "The Tavern is located in the southern part of Einbech.";
  53. mes "It's a nice place to relax after a long day.";
  54. viewpoint 1,145,112,2,0xFF00FF;
  55. next;
  56. goto L_WIPE;
  57. L_TOOL:
  58. mes "[Einbech Guide]";
  59. mes "You can find the Tool Shop in the center of Einbech.";
  60. mes "There, you can purchase any tools you might need for your travels.";
  61. viewpoint 1,177,135,3,0xFF00FF;
  62. next;
  63. goto L_WIPE;
  64. L_SWORD:
  65. mes "[Einbech Guide]";
  66. mes "The Swordman Guild is located in the eastern outskirts of Einbech. ";
  67. mes "It's under construction and they haven't started accepting applications.";
  68. viewpoint 1,253,109,4,0xFF00FF;
  69. next;
  70. goto L_WIPE;
  71. L_MINE:
  72. mes "[Einbech Guide]";
  73. mes "The Mine, which is Einbech's major industry, is located in the northern part of this town.";
  74. mes "It's where we get all of our ores, although monsters get in the mines way.";
  75. viewpoint 1,138,250,5,0x00FF00;
  76. next;
  77. goto L_WIPE;
  78. L_WIPE:
  79. if(@COMPASS_CHECK == 1)goto L_MENU_2;
  80. viewpoint 2,44,216,1,0xFF0000;
  81. viewpoint 2,145,112,2,0xFF00FF;
  82. viewpoint 2,177,135,3,0xFF00FF;
  83. viewpoint 2,253,109,4,0xFF00FF;
  84. viewpoint 2,138,250,5,0x00FF00;
  85. goto L_MENU_2;
  86. L_REMOVE:
  87. viewpoint 2,44,216,1,0xFF0000;
  88. viewpoint 2,145,112,2,0xFF00FF;
  89. viewpoint 2,177,135,3,0xFF00FF;
  90. viewpoint 2,253,109,4,0xFF00FF;
  91. viewpoint 2,138,250,5,0x00FF00;
  92. mes "[Einbech Guide]";
  93. mes "Okay, the marks from your Mini-Map have been removed.";
  94. mes "If you need any guidance around Einbroch please let me or one of the other Einbech Guides know.";
  95. goto L_MENU;
  96. L_NOTICE:
  97. mes "[Einbech Guide]";
  98. mes "Through the technology of the Schwartzwalt Republic, we've upgraded to a digital information system that allows us to mark locations on your Mini-Map for easier navigation.";
  99. next;
  100. mes "[Einbech Guide]";
  101. mes "Your Mini-Map is located in the upper right corner of the screen.";
  102. mes "If you can't see it, press the Ctrl + Tab keys or click the 'Map' button in your Basic Information Window.";
  103. next;
  104. mes "[Einbech Guide]";
  105. mes "On your Mini-Map, click on the '+' and '-' symbols to zoom in and out of your Mini-Map.";
  106. mes "We hope you enjoy your travels here in the city of Einbech.";
  107. goto L_MENU;
  108. L_END:
  109. mes "[Einbech Guide]";
  110. mes "We hope that you";
  111. mes "enjoy your travels";
  112. mes "here in Einbech.";
  113. cutin "ein_soldier",255;
  114. close;
  115. }
  116. einbech.gat,48,214,4 duplicate(Einbech_Guide) Guide#Ein2 852