guides_veins.txt 3.8 KB

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