guides_dicastes.txt 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. //===== rAthena Script =======================================
  2. //= El Dicastes Guide
  3. //===== By: ==================================================
  4. //= Muad_Dib
  5. //===== Current Version: =====================================
  6. //= 1.2
  7. //===== Compatible With: =====================================
  8. //= rAthena Project
  9. //===== Description: =========================================
  10. //= [Official Conversion]
  11. //= Guide for the city of El Dicastes.
  12. //===== Additional Comments: =================================
  13. //= 1.0 First version. [Joseph]
  14. //= 1.1 Fixed viewpoint syntax. [Euphy]
  15. //= 1.2 Navigation system update. [Euphy]
  16. //============================================================
  17. dicastes01,189,191,5 script Traveler Ichack#info 481,2,2,{
  18. mes "[Traveler Ichack]";
  19. mes "Oh!! You are a stranger!";
  20. mes "I'm Ichack, the first adventurer that arrived here in El Dicastes!";
  21. next;
  22. mes "[Traveler Ichack]";
  23. mes "There was someone in the expedition team claiming that he was the first, but it WAS me. That's right.";
  24. next;
  25. mes "[Traveler Ichack]";
  26. mes "That's why I will provide a service to guide adventurers from Midgard.";
  27. mes "What would you like to know?";
  28. F_Navi("[Traveler Ichack]");
  29. next;
  30. switch(select("Dicastes Diel:Residential Area:Training Room:Factory:Pub:Cat Paw Caravan")) {
  31. case 1:
  32. mes "[Traveler Ichack]";
  33. mes "Ah~ That's a beautiful building.";
  34. mes "It's said they discuss important things...";
  35. next;
  36. mes "[Traveler Ichack]";
  37. mes "Please make sure you signed in at the "+F_Navi("Diel","dicastes01,198,351")+", otherwise you'll get in trouble.";
  38. mes "Go directly north from here and you can't miss it.";
  39. viewpoint 1,198,351,0,0x00FF00;
  40. close;
  41. case 2:
  42. mes "[Traveler Ichack]";
  43. mes "The Sapha tribe is so weird. How can they sleep in there?";
  44. next;
  45. mes "[Traveler Ichack]";
  46. mes "You don't understand?";
  47. mes "You won't believe me until you see it! Go see it for yourself!";
  48. next;
  49. mes "[Traveler Ichack]";
  50. mes "The residential area is divided into 2 areas.";
  51. mes "The "+F_Navi("lower residential area","dicastes01,136,106")+" is around 7 o'clock, and the ";
  52. mes F_Navi("upper area","dicastes01,280,283")+" is around 1 o'clock.";
  53. viewpoint 1,280,283,1,0x01FF01;
  54. viewpoint 1,136,106,2,0x0066FF;
  55. close;
  56. case 3:
  57. mes "[Traveler Ichack]";
  58. mes "Because of the dangers here, we need better security...";
  59. mes "Have you ever been to the ";
  60. mes F_Navi("training room","dicastes01,255,172")+"? The training guards seem to never sleep!";
  61. viewpoint 1,255,172,3,0xFFCCCC;
  62. close;
  63. case 4:
  64. mes "[Traveler Ichack]";
  65. mes "This is one of the most important reasons why they live here.";
  66. mes "If you go to the "+F_Navi("factory","dicastes01,97,256")+", you can see the recently refined Bradium.";
  67. viewpoint 1,97,256,4,0x0066FF;
  68. close;
  69. case 5:
  70. mes "[Traveler Ichack]";
  71. mes "Although I arrived here as the first adventurer, the owner of the pub was the first person here.";
  72. mes F_Navi("Bumen Florine's pub","dicastes01,136,106")+" is located underground in the lower residential area.";
  73. mes "He might have some valuable information for you.";
  74. viewpoint 1,136,106,5,0xFF3300;
  75. close;
  76. case 6:
  77. mes "[Traveler Ichack]";
  78. mes "The "+F_Navi("cats","dicastes01,199,39")+" don't seem to have a good relationship with the Sapha like we do.";
  79. mes "Perhaps it's because trading is involved.";
  80. mes "Poor cats. They must be shivering from the cold out there.";
  81. next;
  82. mes "[Traveler Ichack]";
  83. mes "You can find their caravan just outside the gates.";
  84. viewpoint 1,199,39,6,0x9933FF;
  85. close;
  86. }
  87. OnTouch:
  88. if (ep13_3_invite == 6)
  89. emotion ET_SURPRISE;
  90. end;
  91. }