guides_gef.txt 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. //===== eAthena Script =======================================
  2. //= Geffen 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. Added a guide at every exit.
  13. //= v1.1 Now using duplicate command.
  14. //============================================================
  15. // North --------------------------------------------
  16. geffen.gat,123,202,5 script Guide#1::Guide 705,{
  17. cutin "gef_soldier",2;
  18. mes "[Geffen Soldier]";
  19. mes "Welcome to Geffen, the City of Magic.";
  20. next;
  21. mes "[Geffen Soldier]";
  22. mes "We are here to help you find your way. Please feel free to speak to us anytime you need help.";
  23. M_Menu:
  24. next;
  25. menu "View Buildings",M_1, "Notice",M_2, "Cancel",M_End;
  26. M_1:
  27. mes "[Geffen Soldier]";
  28. mes "Do you want me to leave indications on the Mini-Map?";
  29. next;
  30. menu "No Thanks",sM_1a,"Yes Please",sM_1b;
  31. sM_1a:
  32. set @COMPASS_CHECK,0;
  33. goto L_Cont;
  34. sM_1b:
  35. set @COMPASS_CHECK,1;
  36. L_Cont:
  37. mes "[Geffen Soldier]";
  38. mes "Please choose a building to view.";
  39. next;
  40. sM_Menu:
  41. menu "^FF0000Magic Acadamy^000000",M_1_1, "^00A500Blacksmith Workshop^000000",M_1_2, "^4444FFGeffen Tower^000000",M_1_3,
  42. "Armory",M_1_4, "Item Shop",M_1_5, "Pub",M_1_6, "Inn",M_1_7, "Wipe all indications from mini-map",M_1_8, "Cancel", M_End;
  43. M_1_1:
  44. mes "[Geffen Soldier]";
  45. mes "'The 'Magic Acadamy' is the home of magical theorists, and the place for would be Mages.";
  46. viewpoint 1,61,180,1,0xFF5555;
  47. goto sL_Wipe;
  48. M_1_2:
  49. mes "[Geffen Soldier]";
  50. mes "The 'Blacksmith Workshop' is SouthEast of Geffen Tower. It is where Merchants train to become Blacksmiths.";
  51. mes "You can also get your weapons and armor upgraded there.";
  52. viewpoint 1,182,59,2,0x44FF44;
  53. goto sL_Wipe;
  54. M_1_3:
  55. mes "[Geffen Soldier]";
  56. mes "The lower levels of 'Geffen Tower' are spawning grounds for monsters. People go there to train.";
  57. mes "The top floor of the Tower is home to the ^0000FF'Wizard's Guild'^000000. Mages can go there to become Wizards.";
  58. viewpoint 1,120,120,3,0x5555FF;
  59. goto sL_Wipe;
  60. M_1_4:
  61. mes "[Geffen Soldier]";
  62. mes "Head over to the 'Armory' to equip yourself with a variety of weapons and armor.";
  63. viewpoint 1,99,140,4,0xFF00FF;
  64. goto sL_Wipe;
  65. M_1_5:
  66. mes "[Geffen Soldier]";
  67. mes "The 'Item Shop' is the place to go when you need to stock up on things like potions and fly-wings.";
  68. viewpoint 1,44,86,5,0xFF00FF;
  69. goto sL_Wipe;
  70. M_1_6:
  71. mes "[Geffen Soldier]";
  72. mes "The 'Pub' is a great place to meet people and have fun.";
  73. viewpoint 1,138,138,6,0xF0C40F;
  74. goto sL_Wipe;
  75. M_1_7:
  76. mes "[Geffen Soldier]";
  77. mes "The 'Inn' is a good place to rest and replenish your hp and sp.";
  78. viewpoint 1,172,174,7,0xFF8000;
  79. goto sL_Wipe;
  80. M_1_8:
  81. set @COMPASS_CHECK, 2;
  82. sL_Wipe:
  83. if(@COMPASS_CHECK != 2) next; // avoids a double 'next' when 'wipe indications' is chosen
  84. if(@COMPASS_CHECK == 1) goto sM_Menu;
  85. viewpoint 2,61,180,1,0xFF5555;
  86. viewpoint 2,182,59,2,0x44FF44;
  87. viewpoint 2,120,120,3,0x5555FF;
  88. viewpoint 2,99,140,4,0xFF00FF;
  89. viewpoint 2,44,86,5,0xFF00FF;
  90. viewpoint 2,138,138,6,0xF0C40F;
  91. viewpoint 2,172,174,7,0xFF8000;
  92. if (@COMPASS_CHECK == 0) goto sM_Menu;
  93. mes "[Geffen Soldier]";
  94. mes "All indications have been removed";
  95. cutin "gef_soldier",255;
  96. close;
  97. M_2:
  98. mes "[Geffen Soldier]";
  99. mes "We upgraded the Location Guide to the Newest Digital Style. We hope you like this gorgeous new system.";
  100. next;
  101. mes "[Geffen Soldier]";
  102. mes "Don't forget to refer to the Mini-Map on the Upper-Right corner of your screen.";
  103. next;
  104. mes "[Geffen Soldier]";
  105. 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";
  106. mes "Remeber to use the ^ff0000+,-^000000 buttons to adjust the map to your liking.";
  107. goto M_Menu;
  108. M_End:
  109. mes "[Geffen Soldier]";
  110. mes "Have a nice day.";
  111. cutin "gef_soldier",255;
  112. close;
  113. }
  114. // South ------------------------------------------
  115. geffen.gat,118,62,0 duplicate(Guide) Guide#2 705
  116. // East -----------------------------------------------------
  117. geffen.gat,203,116,2 duplicate(Guide) Guide#3 705
  118. // West ----------------------------------------------
  119. geffen.gat,37,123,5 duplicate(Guide) Guide#4 705