guides_gonryun.txt 2.7 KB

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