guides_cmd.txt 4.3 KB

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