guides_mor.txt 4.0 KB

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