iz_dun.txt 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. //===== rAthena Script =======================================
  2. //= Izlude Dungeon Renewal Warp Script
  3. //===== By: ==================================================
  4. //= Athena (1.0)
  5. //= Nana (1.1)
  6. //===== Current Version: =====================================
  7. //= 1.3
  8. //===== Compatible With: =====================================
  9. //= rAthena Project
  10. //===== Description: =========================================
  11. //= Warp Points for Bibilyn Island & Undersea Cave
  12. //===== Additional Comments: =================================
  13. //= 1.2 Moved common warps to base path. [Euphy]
  14. //= 1.3 Added Undersea Tunnel 6th floor warper.
  15. //============================================================
  16. // Undersea Tunnel Warper :: iz_dun05
  17. //============================================================
  18. iz_dun04,130,234,5 script Gatekeeper#iz_dun 413,{
  19. mes "[Gatekeeper]";
  20. mes "Halt!";
  21. mes "What brings you here, Adventurer?";
  22. mes "We've discovered a new floor of this underwater city.";
  23. next;
  24. mes "[Gatekeeper]";
  25. mes "Do you think you're up to the challenge?";
  26. mes "The monsters here are between levels 110 and 124.";
  27. mes "And you must beware of the Kraken!";
  28. next;
  29. switch(select("Release the Kraken!:I'll stay here.")) {
  30. case 1:
  31. mes "[Gatekeeper]";
  32. mes "Be cautious and good luck.";
  33. mes "If you see the Kraken be sure you have your friends to help or do what we do and run.";
  34. close2;
  35. warp "iz_dun05",141,187;
  36. end;
  37. case 2:
  38. mes "[Gatekeeper]";
  39. mes "It's always best to be prepared before exploring a new area.";
  40. mes "Come back when you're ready to go.";
  41. close;
  42. }
  43. }
  44. iz_dun05,142,190,5 script Guard#iz_dun 413,{
  45. mes "[Gatekeeper]";
  46. mes "So I guess you want to go back to the fifth floor?";
  47. next;
  48. switch(select("Yes!:No, I'll stay.")) {
  49. case 1:
  50. mes "[Gatekeeper]";
  51. mes "Be safe, adventurer.";
  52. close2;
  53. warp "iz_dun04",129,232;
  54. end;
  55. case 2:
  56. mes "[Gatekeeper]";
  57. mes "You're not going?";
  58. mes "You're braver than I thought.";
  59. close;
  60. }
  61. }