guides_gonryun.txt 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. //===== rAthena Script =======================================
  2. //= Kunlun Guide
  3. //===== By: ==================================================
  4. //= L0ne_W0lf
  5. //===== Current Version: =====================================
  6. //= 1.0
  7. //===== Compatible With: =====================================
  8. //= rAthena SVN
  9. //===== Description: =========================================
  10. //= [Aegis Conversion]
  11. //= Guide for the city of Kunlun
  12. //===== Additional Comments: =================================
  13. //= 1.0 First version, Renewal guide.
  14. //============================================================
  15. gonryun,163,60,4 script Kunlun Guide#01gonryun 780,{
  16. mes "[He Yuen Zhe]";
  17. mes "Ni Hao!";
  18. mes "Welcome to ^8B4513Kunlun^000000~";
  19. mes "Take a walk around and experience";
  20. mes "the ancient history and tradition";
  21. mes "of our breath taking city.";
  22. next;
  23. mes "[He Yuen Zhe]";
  24. mes "I am responsible for helping you";
  25. mes "with any questions you may have.";
  26. mes "Please feel free to ask me anything.";
  27. while (1) {
  28. next;
  29. switch(select("[ Kafra Employee ]:[ Chief's Residence ]:[ Tool Dealer ]:[ Weapon Dealer ]:[ Armor Dealer ]:[ Wine Maker ]:[ Kunlun Envoy ]:Remove Marks from Mini-Map:Cancel")) {
  30. case 1:
  31. mes "[He Yuen Zhe]";
  32. mes "The ^0000FFKafra Employee^000000 is";
  33. mes "marked on your mini-map.";
  34. mes "Check your mini-map.";
  35. mes "Is there anything else I can do for you?";
  36. viewpoint 1,159,122,0,0x0A82FF;
  37. break;
  38. case 2:
  39. mes "[He Yuen Zhe]";
  40. mes "The ^006400Chief's Residence^000000 is";
  41. mes "marked on your mini-map.";
  42. mes "Check your mini-map.";
  43. mes "Is there anything else I can do for you?";
  44. viewpoint 1,110,131,1,0xAAFF00;
  45. break;
  46. case 3:
  47. mes "[He Yuen Zhe]";
  48. mes "The ^D8BFD8Tool Dealer^000000 is";
  49. mes "marked on your mini-map.";
  50. mes "Check your mini-map.";
  51. mes "Is there anything else I can do for you?";
  52. viewpoint 1,147,84,2,0xD8BFD8;
  53. break;
  54. case 4:
  55. mes "[He Yuen Zhe]";
  56. mes "The ^FF1493Weapon Dealer^000000 is";
  57. mes "marked on your mini-map.";
  58. mes "Check your mini-map.";
  59. mes "Is there anything else I can do for you?";
  60. viewpoint 1,174,101,3,0xFF1493;
  61. break;
  62. case 5:
  63. mes "[He Yuen Zhe]";
  64. mes "The ^8B4513Armor Dealer^000000 is";
  65. mes "marked on your mini-map.";
  66. mes "Check your mini-map.";
  67. mes "Is there anything else I can do for you?";
  68. viewpoint 1,173,84,4,0x8B4513;
  69. break;
  70. case 6:
  71. mes "[He Yuen Zhe]";
  72. mes "The ^9400DWine Maker^000000 is";
  73. mes "marked on your Mini-Map.";
  74. mes "Check your mini-map.";
  75. mes "Is there anything else I can do for you?";
  76. viewpoint 1,213,115,5,0x9400D3;
  77. break;
  78. case 7:
  79. mes "[He Yuen Zhe]";
  80. mes "The ^00BFFFKunlun Envoy^000000 is";
  81. mes "marked on your mini-map.";
  82. mes "Check your mini-map.";
  83. mes "Is there anything else I can do for you?";
  84. viewpoint 1,161,11,6,0x00BFFF;
  85. break;
  86. case 8:
  87. mes "[He Yuen Zhe]";
  88. mes "I'll remove all marks from your mini-map.";
  89. mes "Is there anything else I can do for you?";
  90. viewpoint 2,1,1,0,0xFFFFFF;
  91. viewpoint 2,1,1,1,0xFFFFFF;
  92. viewpoint 2,1,1,2,0xFFFFFF;
  93. viewpoint 2,1,1,3,0xFFFFFF;
  94. viewpoint 2,1,1,4,0xFFFFFF;
  95. viewpoint 2,1,1,5,0xFFFFFF;
  96. viewpoint 2,1,1,6,0xFFFFFF;
  97. break;
  98. case 9:
  99. mes "[He Yuen Zhe]";
  100. mes "Bon voyage!";
  101. close;
  102. }
  103. }
  104. }