guides_dicastes.txt 3.2 KB

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