guides_com.txt 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. //===== eAthena Script =======================================
  2. //= Comodo Guides
  3. //===== By: ==================================================
  4. //= kobra_k88
  5. //===== Current Version: =====================================
  6. //= 1.4
  7. //===== Compatible With: =====================================
  8. //= eAthena 0.5.2 +
  9. //===== Description: =========================================
  10. //=
  11. //===== Additional Comments: =================================
  12. //= Fully working v1.1 Now using duplicate command.
  13. //= 1.2 Optimized, updated common guide names [Lupus]
  14. //= 1.3 Updated the guide according to how it is on iRO, thanks
  15. //= to Muad_Dib [MasterOfMuppets]
  16. //= 1.4 Removed 3 guides, and converted to use functions.
  17. //============================================================
  18. comodo.gat,322,178,4 script Comodo Guide#1 700,{
  19. set @name$,"Native Kokomo";
  20. callfunc "comodo_guide";
  21. end;
  22. }
  23. comodo.gat,176,350,4 script Comodo Guide#2 700,{
  24. set @name$,"Native Cocomo";
  25. callfunc "comodo_guide";
  26. end;
  27. }
  28. comodo.gat,37,219,4 script Comodo Guide#3 700,{
  29. set @name$,"Native Papaya";
  30. callfunc "comodo_guide";
  31. end;
  32. }
  33. function script comodo_guide {
  34. mes "[" + @name$ + "]";
  35. mes "The night of pleasure continues for 24 hours";
  36. mes "Welcome to Comodo, the gambling city.";
  37. mes "I can help you to find buildings easily, feel free to ask me anytime.";
  38. mes "Please choose the building you're searching:";
  39. next;
  40. menu "Casino",L_MENU_1,"Hula dancing Stage^3355FF(Dancer Job Change)^000000",L_MENU_2,"Weapon and Armor Shop",L_MENU_3,"Tool Shop",L_MENU_4,"Tourist Shop",L_MENU_5,"Kapra Corp. Western Branch",L_MENU_6,"Chief's House",L_MENU_7,"Pub",L_MENU_8,"Camp Ground",L_MENU_9,"End conversation",L_MENU_10;
  41. L_MENU_1:
  42. mes "[" + @name$ + "]";
  43. viewpoint 1,140,98,1,0xFF6633;
  44. mes "^FF6633+^000000 -> Casino";
  45. mes "The casino is an important part of Comodo.";
  46. mes "The Comodo Casino provides endless entertainment for travelers from all over the world";
  47. close;
  48. L_MENU_2:
  49. mes "[" + @name$ + "]";
  50. viewpoint 1,188,168,2,0x0000FF;
  51. mes "^0000FF+^000000 -> Hula dancing Stage";
  52. mes "Check out the stage located center of town.";
  53. mes "If you really enjoy the atmosphere of the stage, you should consider about becoming a dancer. ^3355FF(Dancer Job Change)^000000";
  54. close;
  55. L_MENU_3:
  56. mes "[" + @name$ + "]";
  57. viewpoint 1,266,70,3,0x00FFFF;
  58. mes "^00FFFF+^000000 -> Weapon and Armor Shop";
  59. mes "The Weapon and Armor Shop is located south-east edge of town.";
  60. close;
  61. L_MENU_4:
  62. mes "[" + @name$ + "]";
  63. viewpoint 1,86,128,4,0x515151;
  64. mes "^515151+^000000 -> Tool Shop";
  65. mes "The Kit shop is located south-west of town.";
  66. close;
  67. L_MENU_5:
  68. mes "[" + @name$ + "]";
  69. viewpoint 1,298,124,5,0x3355FF;
  70. mes "^3355FF+^000000 -> Tourist Shop";
  71. mes "You should visit the Tourist shop for some rare seashell found only at the shores of Comodo.";
  72. close;
  73. L_MENU_6:
  74. mes "[" + @name$ + "]";
  75. viewpoint 1,136,202,6,0xFF5555;
  76. mes "^FF5555+^000000 -> Kapra Corp. Western Branch";
  77. mes "Yep, the Kapra's Corp will stay with you wherever you go, even here in Comodo!";
  78. mes "You could find the Kapras near the center of town.";
  79. close;
  80. L_MENU_7:
  81. mes "[" + @name$ + "]";
  82. viewpoint 1,114,294,7,0xFF5555;
  83. mes "^FF5555+^000000 -> Chief's House";
  84. mes "Well, that's obviously where the chief resides.";
  85. mes "You should pay a visit to him once in a while, he's a great man when you get to know him.";
  86. close;
  87. L_MENU_8:
  88. mes "[" + @name$ + "]";
  89. viewpoint 1,166,298,8,0xFF5555;
  90. mes "^FF5555+^000000 -> Pub";
  91. mes "The pub is the place for all sort of information.";
  92. mes "The pub is also a place filled with great cultural values for Comodo.";
  93. close;
  94. L_MENU_9:
  95. mes "[" + @name$ + "]";
  96. viewpoint 1,210,308,9,0xFF5555;
  97. mes "^FF5555+^000000 -> Camp Ground";
  98. mes "The Camp Ground is simply a great place to hang out with your familty or companions.";
  99. mes "Sit around the camp fire and enjoy the wonderful tropical weather and surroundings of Comodo!";
  100. close;
  101. L_MENU_10:
  102. mes "[" + @name$ + "]";
  103. mes "Well, I guess I will be seeing you around then.";
  104. mes "Take care, and enjoy your stay.";
  105. close;
  106. }