guides_gonryun.txt 2.5 KB

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