guides_comodo.txt 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. //===== rAthena Script =======================================
  2. //= Comodo Guides
  3. //===== By: ==================================================
  4. //= kobra_k88; L0ne_W0lf
  5. //===== Current Version: =====================================
  6. //= 1.5
  7. //===== Compatible With: =====================================
  8. //= rAthena Project
  9. //===== Description: =========================================
  10. //= [Official Conversion]
  11. //= Guides for the City of Comodo
  12. //===== Additional Comments: =================================
  13. //= Fully working
  14. //= 1.1 Now using duplicate command.
  15. //= 1.2 Optimized, updated common guide names [Lupus]
  16. //= 1.3 Updated the guide according to how it is on iRO, thanks
  17. //= to Muad_Dib [MasterOfMuppets]
  18. //= 1.4 Removed 3 guides, and converted to use functions.
  19. //= 1.5 Rescripted to official 10.3 standards. [L0ne_W0lf]
  20. //============================================================
  21. comodo,322,178,4 script Comodo Guide#cmd::CmdGuide 700,{
  22. callfunc "F_CmdGuide","Native Kokomo";
  23. }
  24. comodo,176,350,4 script Comodo Guide#2cmd 700,{
  25. callfunc "F_CmdGuide","Native Nutcoco";
  26. }
  27. comodo,37,219,4 script Guide#2cmd 700,{
  28. callfunc "F_CmdGuide","Native Papaya";
  29. }
  30. function script F_CmdGuide {
  31. mes "["+getarg(0)+"]";
  32. mes "Welcome to Comodo, the";
  33. mes "city of dreams and fantasy,";
  34. mes "where the nightlife never ends!";
  35. mes "I know this area really well,";
  36. mes "so let me know if you need";
  37. mes "directions anywhere here.";
  38. next;
  39. switch(select("Casino:Hula Dance Stage ^3355FF(Dancer Job Change)^000000:Weapon and Armor Shop:Tool Shop:Tourist Shop:Kafra Co. Western Branch:Chief's House:Pub:Campground:End Conversation")) {
  40. case 1:
  41. viewpoint 1,140,98,0,0xFF6633;
  42. mes "Please refer to the cross mark,";
  43. mes "^FF6633+^000000, on your Mini-Map to find the";
  44. mes "Casino, a haven for rest for";
  45. mes "weary travlers and the heart";
  46. mes "of Comodo's nightlife.";
  47. close;
  48. case 2:
  49. viewpoint 1,188,168,1,0x0000FF;
  50. mes "Please refer to the cross mark,";
  51. mes "^0000FF+^000000, on your Mini-Map to find the";
  52. mes "Hula Dance Stage, the place";
  53. mes "where female Archers can";
  54. mes "change jobs to Dancers.";
  55. close;
  56. case 3:
  57. viewpoint 1,266,70,2,0x00FFFF;
  58. mes "Please refer to the cross mark,";
  59. mes "^00FFFF+^000000, on your Mini-Map to find the";
  60. mes "Weapon and Armor shop. Be";
  61. mes "sure to check that shop for";
  62. mes "any special items that are";
  63. mes "unique to Comodo!";
  64. close;
  65. case 4:
  66. viewpoint 1,86,128,3,0x515151;
  67. mes "Please refer to the cross mark,";
  68. mes "^515151+^000000, on your Mini-Map to find the";
  69. mes "Tool Shop. If you've never been";
  70. mes "there before, then I suggest";
  71. mes "you check it out and stock up";
  72. mes "on tools you might need later.";
  73. close;
  74. case 5:
  75. viewpoint 1,298,124,4,0x3355FF;
  76. mes "Please refer to the cross mark,";
  77. mes "^3355FF+^000000, on your Mini-Map to find the";
  78. mes "Tourist Shop where you can ";
  79. mes "buy gifts that can only be found in the Comodo region~";
  80. close;
  81. case 6:
  82. viewpoint 1,136,202,5,0xFF5555;
  83. mes "Please refer to the cross mark,";
  84. mes "^FF5555+^000000, on your Mini-Map to find the";
  85. mes "Western branch of the Kafra";
  86. mes "Corporation. They offer some";
  87. mes "pretty important services that you may want to check out later.";
  88. close;
  89. case 7:
  90. viewpoint 1,114,294,5,0xFF5555;
  91. mes "Please refer to the cross mark,";
  92. mes "^FF5555+^000000, on your Mini-Map to find the";
  93. mes "Chief's House. You're welcome";
  94. mes "to visit him, and he's usually";
  95. mes "happy to have visitors.";
  96. close;
  97. case 8:
  98. viewpoint 1,166,298,5,0xFF5555;
  99. mes "Please refer to the cross mark,";
  100. mes "^FF5555+^000000, on your Mini-Map to find the";
  101. mes "Pub. There, you can meet other";
  102. mes "tourists, relax, and socialize";
  103. mes "in an enjoyable environment~";
  104. close;
  105. case 9:
  106. viewpoint 1,210,308,5,0xFF5555;
  107. mes "Please refer to the cross mark,";
  108. mes "^FF5555+^000000, on your Mini-Map to find the";
  109. mes "Campground. Gather with your";
  110. mes "family and friends, and enjoy";
  111. mes "the special barbeque of";
  112. mes "Comodo's camping grounds~";
  113. close;
  114. case 10:
  115. mes "["+getarg(0)+"]";
  116. mes "Actually, it always looks";
  117. mes "like nighttime in Comodo";
  118. mes "because it's built in a huge";
  119. mes "cave. We don't get any sunlight";
  120. mes "here, but the darkness here is";
  121. mes "more exciting than gloomy~";
  122. close;
  123. }
  124. }