odin.txt 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. //===== Athena Script ========================================
  2. //= Odin Temple Warp Script
  3. //===== By: ==================================================
  4. //= birkiczd (1.0)
  5. //===== Current Version: =====================================
  6. //= 1.2
  7. //===== Compatible With: =====================================
  8. //= Any Athena Version
  9. //===== Description: =========================================
  10. //= Warp Points for Odin Temple
  11. //===== Additional Comments: =================================
  12. //= 1.1 Move the Saylor from Hugel.txt here. [Poki#3]
  13. //= Hako's Sprite, cords and price is official. The text is not.
  14. //= 1.2 Removed Duplicates [Silent]
  15. //============================================================
  16. odin_tem01.gat,378,181,0 warp odin01 1,1,odin_tem02.gat,22,181
  17. odin_tem02.gat,20,181,0 warp odin02 1,1,odin_tem01.gat,376,181
  18. odin_tem01.gat,384,334,0 warp odin03 1,1,odin_tem02.gat,23,334
  19. odin_tem02.gat,20,334,0 warp odin04 1,1,odin_tem01.gat,381,334
  20. odin_tem02.gat,152,350,0 warp odin05 1,1,odin_tem03.gat,121,51
  21. odin_tem03.gat,122,48,0 warp odin06 1,1,odin_tem02.gat,153,347
  22. odin_tem02.gat,259,374,0 warp odin07 1,1,odin_tem03.gat,249,35
  23. odin_tem03.gat,249,33,0 warp odin08 1,1,odin_tem02.gat,262,371
  24. hugel.gat,209,109,1 script Sailor Hako#01 709,{
  25. mes "[Sailor Hako]";
  26. mes "Hello stranger. I'm the only person that offers a unique trip to the cursed Odin Islands.";
  27. mes "One of the strongest monsters known to man live there, so no wonder. Ha, ha, ha~!";
  28. next;
  29. mes "[Sailor Hako]";
  30. mes "Anyway I'm planing a trip right now. I'll let you tag along for a measly 800 zeny. You dig?";
  31. next;
  32. menu "Yeah, I dig.",-,"No, thanks.",L_No;
  33. mes "[Sailor Hako]";
  34. if (Zeny < 800) goto L_Zeny;
  35. set Zeny, Zeny-800;
  36. mes "All aboard!";
  37. next;
  38. warp "odin_tem01.gat",100,145;
  39. end;
  40. L_Zeny:
  41. mes "Who are ya trying to kid? You're poor like a church mouse!";
  42. mes "Come back whey you make some cash, and I'll let you hike along";
  43. close;
  44. L_No:
  45. mes "[Sailor Hako]";
  46. mes "Suit yourself. Se ya!";
  47. close;
  48. }
  49. odin_tem01.gat,93,146,3 script Sailor Hako#02 709,{
  50. mes "[Sailor Hako]";
  51. mes "So how is it? Not to hard for ya? Wanna to go back to Hugel?";
  52. next;
  53. menu "Yeah...",-,"Nope.",L_No;
  54. mes "[Sailor Hako]";
  55. mes "All aboard!";
  56. next;
  57. warp "hugel.gat",205,108;
  58. end;
  59. L_No:
  60. mes "[Sailor Hako]";
  61. mes "Suit yourself.";
  62. close;
  63. }