guides_brasilis.txt 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. //===== rAthena Script =======================================
  2. //= Brasilis Guide
  3. //===== Description: =========================================
  4. //= [Official Conversion based on bRO & jRO servers]
  5. //= Guide for the city of Brasilis.
  6. //
  7. // Note:
  8. // - Brasilis was introduced in Pre-Renewal only for bRO and
  9. // jRO official servers with differences in monster stats,
  10. // spawns and quests.
  11. // It was added in Renewal for every other official server.
  12. // Since we follow kRO this is disabled by default.
  13. // You can enable it on npc/pre-re/scripts_athena.conf
  14. //===== Changelog: ===========================================
  15. //= 1.0 First Version [Daegaladh]
  16. //============================================================
  17. brasilis,219,97,3 script Brasilis Guide 478,{
  18. mes "[Brasilis Guide]";
  19. mes "Welcome to ^8B4513Brasilis^000000, a country as passionate as the sun.";
  20. mes "If you have any questions, please ask me.";
  21. next;
  22. switch(select("Ask about locations:Remove Marks from Mini-Map:Cancel")) {
  23. case 1:
  24. mes "[Brasilis Guide]";
  25. mes "Where can I guide you?";
  26. next;
  27. switch(select("[ Hotel ]:[ Jungle Cable ]:[ Art Museum ]:[ Market ]:[ Verass Monument ]")) {
  28. case 1:
  29. mes "[Brasilis Guide]";
  30. mes "The Brasilis Hotel is located just above, ^FF3355+^000000.";
  31. mes "Is there anything else I can do for you?";
  32. viewpoint 1,274,151,2,0xFF3355;
  33. close;
  34. case 2:
  35. mes "[Brasilis Guide]";
  36. mes "Do you want to go through the rough jungle? You can take a ";
  37. mes "Jungle Cable here ^CE6300+^000000.";
  38. mes "Is there anything else I can do for you?";
  39. viewpoint 1,308,335,3,0xCE6300;
  40. close;
  41. case 3:
  42. mes "[Brasilis Guide]";
  43. mes "The pride of Brasilis, the world scale Art Museum is at ^A5BAAD+^000000.";
  44. mes "Is there anything else I can do for you?";
  45. viewpoint 1,137,167,4,0x00FF00;
  46. close;
  47. case 4:
  48. mes "[Brasilis Guide]";
  49. mes "You can buy items for hunting at the Market here ^55FF33+^000000.";
  50. mes "Is there anything else I can do for you?";
  51. viewpoint 1,254,248,5,0x55FF33;
  52. close;
  53. case 5:
  54. mes "[Brasilis Guide]";
  55. mes "The iconic monument of Brasilis, the Verass Monument stands at ^3355FF+^000000.";
  56. mes "Is there anything else I can do for you?";
  57. viewpoint 1,195,235,6,0x3355FF;
  58. close;
  59. }
  60. end;
  61. case 2:
  62. mes "[Brasilis Guide]";
  63. mes "I'll remove all marks from your mini-map.";
  64. mes "Is there anything else I can do for you?";
  65. viewpoint 0,274,151,2,0x00FF00;
  66. viewpoint 0,308,335,3,0x00FF00;
  67. viewpoint 0,137,167,4,0x00FF00;
  68. viewpoint 0,254,248,5,0x00FF00;
  69. viewpoint 0,195,235,6,0x00FF00;
  70. close;
  71. case 3:
  72. mes "[Brasilis Guide]";
  73. mes "Wandering on your own is always the best way to explore. Anyway, take care.";
  74. close;
  75. }
  76. }