guides_einbe.txt 4.4 KB

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