guides_veins.txt 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. //===== rAthena Script =======================================
  2. //= Veins Guides
  3. //===== By: ==================================================
  4. //= L0ne_W0lf
  5. //===== Current Version: =====================================
  6. //= 1.1
  7. //===== Compatible With: =====================================
  8. //= rAthena Project
  9. //===== Description: =========================================
  10. //= [Official Conversion]
  11. //= Guides for the city of Veins
  12. //===== Additional Comments: =================================
  13. //= 1.0 First version, Renewal guides.
  14. //= 1.1 Navigation system update. [Euphy]
  15. //============================================================
  16. veins,210,345,5 script Veins Guide#veins01::GuideVeins 934,{
  17. mes "[Veins Guide]";
  18. mes "Thank you for coming through the rough sand storms. Welcome to ^8B4513Veins^000000, the Canyon Village.";
  19. mes "If this is the first time for you to use the guide services, why don't you check the \"Notice\" menu first?";
  20. F_Navi("[Veins Guide]");
  21. next;
  22. while (1) {
  23. switch(select("[ Temple ]:[ Inn ]:[ Pub ]:[ Weapon Shop ]:[ Tool Shop ]:[ Airport ]:[ Geological Research Institute ]:[ Cool Event Corp. Staff ]:Remove Marks from Mini-Map:Cancel")) {
  24. case 1:
  25. mes "[Veins Guide]";
  26. mes "The "+F_Navi("Temple","veins,197,256")+" is always filled with praying the faithful of the incarnation of goddess Freya.";
  27. mes "It's located on the North side of Veins.";
  28. mes "Would you like to check any other locations?";
  29. viewpoint 1,197,256,0,0xFF0000;
  30. next;
  31. break;
  32. case 2:
  33. mes "[Veins Guide]";
  34. mes "You can rest your fatigue of the journey in the "+F_Navi("Inn","veins,110,278")+". The Inn is located on the North-West side of Veins.";
  35. mes "Would you like to check any other locations?";
  36. viewpoint 1,110,278,1,0xFF4500;
  37. next;
  38. break;
  39. case 3:
  40. mes "[Veins Guide]";
  41. mes "If you want to talk to the Veins Towners, visit the Veins "+F_Navi("Pub","veins,150,215")+".";
  42. mes "The pub is located on the west side of Veins.";
  43. mes "Would you like to check any other locations?";
  44. viewpoint 1,150,215,2,0xDAA520;
  45. next;
  46. break;
  47. case 4:
  48. mes "[Veins Guide]";
  49. mes "You have to be able to protect your own body.";
  50. mes "The "+F_Navi("Weapon Shop","veins,150,175")+" in Veins is selling the good weapons at a reasonable price..";
  51. mes "It is located on the West side of Veins.";
  52. mes "Would you like to check any other locations?";
  53. viewpoint 1,150,175,3,0x008000;
  54. next;
  55. break;
  56. case 5:
  57. mes "[Veins Guide]";
  58. mes "The essential items! Check out the Veins "+F_Navi("Tool Shop","veins,230,161")+" in the center of town..";
  59. mes "Would you like to check any other locations?";
  60. viewpoint 1,230,161,4,0x0000FF;
  61. next;
  62. break;
  63. case 6:
  64. mes "[Veins Guide]";
  65. mes "The "+F_Navi("Airport","veins,273,287")+" of Veins is currently only used for Cargo.";
  66. mes "Would you like to check any other locations?";
  67. viewpoint 1,273,287,5,0x000080;
  68. next;
  69. break;
  70. case 7:
  71. mes "[Veins Guide]";
  72. mes "Are you interested in Geology?";
  73. mes "If so, please visit the ";
  74. mes F_Navi("Geological Research Institute","veins,150,175")+" at the second floor of Weapon Shop.";
  75. mes "Would you like to check any other locations?";
  76. viewpoint 1,150,175,6,0x800080;
  77. next;
  78. break;
  79. case 8:
  80. mes "[Veins Guide]";
  81. mes "I will mark the location";
  82. mes "of the "+F_Navi("Cool Event Corp. Staff","veins,209,127","^808080");
  83. mes "on your mini map.";
  84. mes "Would you like to check any other locations?";
  85. viewpoint 1,209,127,7,0x808080;
  86. next;
  87. break;
  88. case 9:
  89. mes "[Veins Guide]";
  90. mes "Sure, I'll remove all marks from your mini-map.";
  91. mes "Is there anything else I can do for you?";
  92. viewpoint 2,197,256,0,0xFFFFFF;
  93. viewpoint 2,110,278,1,0xFFFFFF;
  94. viewpoint 2,150,215,2,0xFFFFFF;
  95. viewpoint 2,150,175,3,0xFFFFFF;
  96. viewpoint 2,230,161,4,0xFFFFFF;
  97. viewpoint 2,273,287,5,0xFFFFFF;
  98. viewpoint 2,150,175,6,0xFFFFFF;
  99. viewpoint 2,209,127,7,0xFFFFFF;
  100. next;
  101. break;
  102. case 10:
  103. mes "[Veins Guide]";
  104. mes "Have a safe journey!";
  105. close;
  106. }
  107. }
  108. }
  109. veins,189,101,5 duplicate(GuideVeins) Veins Guide#veins02 934