6.txt 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. // by CallNix v.0.0
  2. //======================================Juno to Izlude airship=====================================================================
  3. airplane_01.gat,238,154,4 script Captain 854,{
  4. if (airshipquest==0) {
  5. mes "[Fayroll]";
  6. mes "I have nothing to say to you anymore";
  7. close;
  8. }
  9. if (airshipquest==3) {
  10. mes "[Fayroll]";
  11. mes "Oh, you have finished that work. Great. Now i shall read this letter.";
  12. mes "Don't interrupt me please";
  13. delitem 7276,1;
  14. set airshipquest,4;
  15. //addtimer 30000,"Captain::OnFinish"; Âîçìîæíî ñäåëàòü òàê. Íî òóò ïî òàéìåðó, à íå ïî êëèêàì íà ÍÏÖ
  16. close;
  17. }
  18. if (airshipquest==4) {
  19. set @k,rand(4);
  20. if (@k == 2) goto OnFinish;
  21. mes "[Fayroll]";
  22. mes "I had not finished the letter yet";
  23. close;
  24. }
  25. mes "[Fayroll]";
  26. mes "Hello, "+strcharinfo(0)+". Nice to see you";
  27. mes "Anything want from me?";
  28. next;
  29. if (select("yes,about airships:no, nothing") == 1) {
  30. mes "[Fayroll]";
  31. mes "So i think you want to know how airship works";
  32. mes "This is the top secret that only a captain will know. Anyway, if you're willing ti help me, I will let you know.";
  33. next;
  34. menu "I will help you. But what must I do?",-,"No, sorry, I have no time for this.",L_SORRY;
  35. mes "[Fayroll]";
  36. mes " You see, I have a brother. He is also a captain of airplane in Juno to Lighthalzen airship.";
  37. mes "As we are on different ships, i can't communicate with him. Yor is to deliver this letter to him.";
  38. mes "If you will do this, I shall tell you the secret.";
  39. getitem 7276,1; //Tarloks letter. Íå íàøåë â áàçå
  40. set airshipquest,1;
  41. } else {
  42. mes "[Fayroll]";
  43. mes "Then don't interrupt me. I have a lot of work to do.";
  44. mes "Go to the Casino on ship. And spen some time there";
  45. }
  46. close;
  47. L_SORRY:
  48. mes "[Fayroll]";
  49. mes "Ye this is bad, but i can't insist on it. Follow your way";
  50. mes "See you the other day.";
  51. close;
  52. OnFinish:
  53. mes "[Fayroll]";
  54. mes "Whoo... I finally got it.Now i shall tell you the secret.";
  55. next;
  56. mes "[Fayroll]";
  57. mes "The cocept of the flight of airship";
  58. mes "is the energy produced from the boiler wich push the propeller";
  59. mes "that moves the giant beauty. Do you understand now?";
  60. next;
  61. menu "Is That all???",-;
  62. mes "[Fayroll]";
  63. mes "You can't lift this thing up only with steam.";
  64. mes "thats why the machine ^5566FF'Enchancer'^000000 is used";
  65. mes "It is working on Heart of Ymir. Thats all the secret. Now go.";
  66. set airshipquest,0;
  67. getexp 200000,10000;
  68. close;
  69. }
  70. //=======================================Juno to Lighthalzen airship====================================================================
  71. airplane.gat,236,163,4 script Aiplane Captain 855,{
  72. if (airshipquest == 1) goto L_QUEST;
  73. if (airshipquest == 2) goto L_FINISH;
  74. mes "[Dulu]";
  75. mes "Welcome on the board of ourship. Guess you will have lots of time here";
  76. close;
  77. L_QUEST:
  78. mes "[Dulu]";
  79. mes "Hello, stranger. I am the Airplane Captain of this ship.";
  80. mes "If you have any problems with our stuff you can simply tell me about this.";
  81. next;
  82. if (select("I have letter for you:hmm.. sorry") == 1) {
  83. mes "[Dulu]";
  84. mes "You have letter for me?? Really??";
  85. delitem 7276,1;
  86. mes "WOHHOOO! Its from my brother. Thx alot, stranger..";
  87. mes "You see, he has borrowed something from me long ago. But unfortunatly he had lost it";
  88. mes "and this reallly bed for you...";
  89. next;
  90. mes "*Dulu shows you a letter*";
  91. mes "^5566FF'The one who send you the letter will find it for me. Don't reply to me if he refuses to do so'^000000";
  92. next;
  93. mes "[Dulu]";
  94. mes "So when you accept that work you accept doing this me. Now i shall tell you your work";
  95. next;
  96. mes "[Dulu]";
  97. mes "My brother had lost 2 Will of Darkness and 2 Prickly Fruits";
  98. mes "They can simply be dropped on the deck of the ship. Monsters often atack ships. Get this items for me from them.";
  99. mes "Now monster are going to atack Juno to Izlude airship. Go there and get what i need";
  100. set airshipquest,2;
  101. } else {
  102. mes "[Dulu]";
  103. mes "Well, you know where to find me. See you later";
  104. }
  105. close;
  106. L_FINISH:
  107. if (countitem(7340)<2 && countitem(576)<2) {
  108. mes "[Dulu]";
  109. mes "You haven't gathered the items yet";
  110. close;
  111. }
  112. mes "[Dulu]";
  113. mes "Great work i can say";
  114. delitem 7340,2;
  115. delitem 576,2;
  116. getitem 7276,1;
  117. set airshipquest,3;
  118. close;
  119. }