guides_izl.txt 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. //===== eAthena Script =======================================
  2. //= Izlude Guides
  3. //===== By: ==================================================
  4. //= kobra_k88
  5. //===== Current Version: =====================================
  6. //= 1.4
  7. //===== Compatible With: =====================================
  8. //= eAthena 7.15 +
  9. //===== Description: =========================================
  10. //=
  11. //===== Additional Comments: =================================
  12. //= Fully working
  13. //= 1.2 Optimized, updated common guide names [Lupus]
  14. //= 1.3 Updated the guide according to how it is on iRO, thanks [MasterOfMuppets]
  15. //= to Muad_Dib
  16. //= 1.4 Fitted the many lines into 1 or 2, and corrected some typos [erKURITA]
  17. //============================================================
  18. izlude.gat,121,87,6 script Guide 105,{
  19. cutin "prt_soldier",2;
  20. mes "[Izlude Guide]";
  21. mes "Welcome to Izlude, Prontera's satellite city.";
  22. mes "If you need any guidance around Izlude, feel free to ask me at anytime.";
  23. L_MENU:
  24. next;
  25. menu "City Guide",L_CITY,"Remove Marks from Mini-Map",L_REMOVE,"Notice",L_NOTICE,"Cancel",L_END;
  26. L_CITY:
  27. mes "[Izlude Guide]";
  28. mes "Please select a location from the following menu.";
  29. mes "Would you like me to mark locations on your Mini-Map?";
  30. next;
  31. menu "Yes.",L_YES,"No.",L_NO;
  32. L_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 "^FF0000Swordman Association^000000",L_SWORD,"Swordman Hall",L_HALL,"Arena",L_ARENA,"Izlude Marina",L_MARINA,"Weapon Shop",L_WEAPON,"Tool Shop",L_TOOL,"Cancel",-;
  40. mes "[Izlude Guide]";
  41. mes "Please ask me to remove marks from then Mini-Map if you no longer wish to have the location marks displayed on your Mini-Map.";
  42. goto L_MENU;
  43. L_SWORD:
  44. mes "[Izlude Guide]";
  45. mes "The Swordman Association is located on an island that is in west Izlude.";
  46. mes "If you're thinking of changing jobs to Swordman, you should check it out.";
  47. viewpoint 1,52,140,1,0xFF0000;
  48. next;
  49. goto L_WIPE;
  50. L_HALL:
  51. mes "[Izlude Guide]";
  52. mes "The Swordman Hall is located on the eastern island connected to Izlude.";
  53. viewpoint 1,214,130,2,0x00FF00;
  54. next;
  55. goto L_WIPE;
  56. L_ARENA:
  57. mes "[Izlude Guide]";
  58. mes "Izlude's famous Arena is located at the northern end of Izlude.";
  59. viewpoint 1,128,225,3,0x00FF00;
  60. next;
  61. goto L_WIPE;
  62. L_MARINA:
  63. mes "[Izlude Guide]";
  64. mes "You can find the Marina in the northeast part of Izlude.";
  65. mes "There, you can ride a ship which will take you to Alberta or Byalan Island.";
  66. viewpoint 1,200,180,4,0xFF0000;
  67. next;
  68. goto L_WIPE;
  69. L_WEAPON:
  70. mes "[Izlude Guide]";
  71. mes "You can easily find the Weapon Shop in northwest Izlude.";
  72. viewpoint 1,111,149,5,0xFF00FF;
  73. next;
  74. goto L_WIPE;
  75. L_TOOL:
  76. mes "[Izlude Guide]";
  77. mes "The Tool Shop shouldn't be too hard to find in the northeast part of Izlude.";
  78. viewpoint 1,148,148,6,0xFF00FF;
  79. next;
  80. goto L_WIPE;
  81. L_WIPE:
  82. if(@COMPASS_CHECK == 1)goto L_MENU_2;
  83. viewpoint 2,52,140,1,0xFF0000;
  84. viewpoint 2,214,130,2,0x00FF00;
  85. viewpoint 2,128,225,3,0x00FF00;
  86. viewpoint 2,200,180,4,0xFF0000;
  87. viewpoint 2,111,149,5,0xFF00FF;
  88. viewpoint 2,148,148,6,0xFF00FF;
  89. goto L_MENU_2;
  90. L_REMOVE:
  91. viewpoint 2,52,140,1,0xFF0000;
  92. viewpoint 2,214,130,2,0x00FF00;
  93. viewpoint 2,128,225,3,0x00FF00;
  94. viewpoint 2,200,180,4,0xFF0000;
  95. viewpoint 2,111,149,5,0xFF00FF;
  96. viewpoint 2,148,148,6,0xFF00FF;
  97. goto L_MENU;
  98. L_NOTICE:
  99. mes "[Izlude Guide]";
  100. 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.";
  101. next;
  102. mes "[Izlude Guide]";
  103. mes "Your Mini-Map is located in the upper right corner of the screen.";
  104. mes "If you can't see it, press the Ctrl + Tab keys or click the 'Map' button in your Basic Information Window.";
  105. next;
  106. mes "[Izlude Guide]";
  107. mes "On your Mini-Map, click on the '+' and '-' symbols to zoom in and out of your Mini-Map.";
  108. mes "We hope you enjoy your travels here in the city of Izlude.";
  109. goto L_MENU;
  110. L_END:
  111. mes "[Izlude Guide]";
  112. mes "Okay then, feel free to come to me if you ever feel lost around Izlude, alright?";
  113. cutin "prt_soldier",255;
  114. close;
  115. }