guides_gonryun.txt 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. //===== rAthena Script =======================================
  2. //= Kunlun Guides
  3. //===== By: ==================================================
  4. //= kobra_k88; L0ne_W0lf
  5. //===== Current Version: =====================================
  6. //= 1.0
  7. //===== Compatible With: =====================================
  8. //= rAthena Project
  9. //===== Description: =========================================
  10. //= [Official COnversion]
  11. //= Guides for the City of Kunlun
  12. //===== Additional Comments: =================================
  13. //= 1.0 First version [L0ne_W0lf]
  14. //============================================================
  15. gonryun,163,60,4 script Kunlun Guide#gon 780,{
  16. mes "[He Yuen Zhe]";
  17. mes "Ni Hao!";
  18. mes "Welcome to Kunlun~";
  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. next;
  28. switch(select("Residence of the Chief:Tool Dealer:Weapon Dealer:Armor Dealer:Wine Maker")) {
  29. case 1:
  30. viewpoint 1,109,131,0,0xFF3355;
  31. mes "[He Yuen Zhe]";
  32. mes "Please follow your minimap, and head over to the ^FF3355+^000000 mark.";
  33. mes "There, you'll get to the residence of the Chief. Enjoy your stay in lovely Kunlun!";
  34. mes "Xie Xie!";
  35. close;
  36. case 2:
  37. viewpoint 1,147,82,1,0xCE6300;
  38. mes "[He Yuen Zhe]";
  39. mes "Please follow your minimap, and head over to the ^CE6300+^000000 mark.";
  40. mes "There, you'll get to the Tool Dealer. Enjoy your stay in lovely Kunlun!";
  41. mes "Xie Xie!";
  42. close;
  43. case 3:
  44. viewpoint 1,174,104,2,0x55FF33;
  45. mes "[He Yuen Zhe]";
  46. mes "Please follow your minimap, and head over to the ^55FF33+^000000 mark.";
  47. mes "There, you'll get to the Weapon Dealer. Enjoy your stay in lovely Kunlun!";
  48. mes "Xie Xie!";
  49. close;
  50. case 4:
  51. viewpoint 1,173,84,3,0x3355FF;
  52. mes "[He Yuen Zhe]";
  53. mes "Please follow your minimap, and head over to the ^3355FF+^000000 mark.";
  54. mes "There, you'll get to the Armor Dealer. Enjoy your stay in lovely Kunlun!";
  55. mes "Xie Xie!";
  56. close;
  57. case 5:
  58. viewpoint 1,215,114,3,0xCD69C9;
  59. mes "[He Yuen Zhe]";
  60. mes "Please follow your minimap, and head over to the ^CD69C9+^000000 mark.";
  61. mes "There, you'll get to the Wine Maker. Enjoy your stay in lovely Kunlun!";
  62. mes "Xie Xie!";
  63. close;
  64. }
  65. }