guides_mor.txt 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. //===== eAthena Script =======================================
  2. //= Morroc 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. morocc.gat,153,286,6 script Guide#1::Guide 707,{
  17. cutin "moc_soldier",2;
  18. mes "[Morroc Soldier]";
  19. mes "Welcome to Morroc, the Desert Frontier!";
  20. next;
  21. mes "[Morroc 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 "[Morroc 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 "[Morroc Soldier]";
  38. mes "Please choose a building to view.";
  39. next;
  40. sM_Menu:
  41. menu "^FF0000Thief Guild^000000",M_1_1, "Armory",M_1_2, "Inn",M_1_3, "Pub",M_1_4, "Mercenary Guild",M_1_5,
  42. "Wipe all indications from mini-map.",M_1_6, "Cancel",M_End;
  43. M_1_1:
  44. mes "[Morocc Soldier]";
  45. mes "The 'Thief Guild'.... I hear that it's the place to go if you want to be a Thief.....";
  46. viewpoint 1,24,297,1,0xFF0000;
  47. goto sL_Wipe;
  48. M_1_2:
  49. mes "[Morocc Soldier]";
  50. mes "Head over to the 'Armory' to equip yourself with a variety of weapons and armor.";
  51. viewpoint 1,253,56,2,0xFF00FF;
  52. goto sL_Wipe;
  53. M_1_3:
  54. mes "[Morocc Soldier]";
  55. mes "In Morroc there are 2 'Inn's' located in the South and NorthEastern parts of town.";
  56. viewpoint 1,274,269,3,0xFF00FF;
  57. viewpoint 1,197,66,4,0xFF00FF;
  58. goto sL_Wipe;
  59. M_1_4:
  60. mes "[Morocc Soldier]";
  61. mes "The 'Pub' is located to the NorthWest of town.";
  62. viewpoint 1,52,259,5,0xFF00FF;
  63. goto sL_Wipe;
  64. M_1_5:
  65. mes "[Morocc Soldier]";
  66. mes "The 'Mercenary Guild' is in the Eastern corner of town.";
  67. viewpoint 1,284,171,6,0x00FF00;
  68. goto sL_Wipe;
  69. M_1_6:
  70. set @COMPASS_CHECK, 2;
  71. sL_Wipe:
  72. if(@COMPASS_CHECK != 2) next; // avoids a double 'next' when 'wipe indications' is chosen
  73. if(@COMPASS_CHECK == 1) goto sM_Menu;
  74. viewpoint 2,24,297,1,0xFF0000;
  75. viewpoint 2,253,56,2,0xFF00FF;
  76. viewpoint 2,274,269,3,0xFF00FF;
  77. viewpoint 2,197,66,4,0xFF00FF;
  78. viewpoint 2,52,259,5,0xFF00FF;
  79. viewpoint 2,284,171,6,0x00FF00;
  80. if (@COMPASS_CHECK == 0) goto sM_Menu;
  81. mes "[Morroc Soldier]";
  82. mes "All indications have been removed";
  83. cutin "moc_soldier",255;
  84. close;
  85. M_2:
  86. mes "[Morroc Soldier]";
  87. mes "We upgraded the Location Guide to the Newest Digital Style. We hope you like this gorgeous new system.";
  88. next;
  89. mes "[Morroc Soldier]";
  90. mes "Don't forget to refer to the Mini-Map on the Upper-Right corner of your screen.";
  91. next;
  92. mes "[Morroc Soldier]";
  93. 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";
  94. mes "Remeber to use the ^ff0000+,-^000000 buttons to adjust the map to your liking.";
  95. goto M_Menu;
  96. M_End:
  97. mes "[Morocc Soldier]";
  98. mes "Good by for now.";
  99. cutin "moc_soldier",255;
  100. close;
  101. }
  102. // South --------------------------------------------
  103. morocc.gat,162,97,6 duplicate(Guide) Guide#2 707
  104. // West --------------------------------------------
  105. morocc.gat,28,161,6 duplicate(Guide) Guide#3 707
  106. // East --------------------------------------------
  107. morocc.gat,294,203,9 duplicate(Guide) Guide#4 707