odin.txt 2.3 KB

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