4.txt 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. airplane,236,63,4 script Hallen 55,{
  2. if (fragmentauest>3) {
  3. mes "[Hallen]";
  4. mes "Nice weather, isn't it?";
  5. close;
  6. }
  7. if (fragmentauest==2) {
  8. if (girls==1) {
  9. mes "[Hallen]";
  10. mes "Have you finished that trip??";
  11. close;
  12. }
  13. mes "[Hallen]";
  14. mes "Oh, thx hero!Do you like my girls? She's reallybeatiful. Maybe you";
  15. mes "shall become her boyfriend?";
  16. next;
  17. mes "[Hallen]";
  18. mes " Its a joke ^_- Never mind.";
  19. mes "And you know, there is one thing im really ineterested in....";
  20. next;
  21. if (airshipquest != 5) {
  22. mes "[Hallen]";
  23. mes "You should better ask captain about the airship";
  24. mes "You can't understand me if you don't do that...";
  25. close;
  26. };
  27. mes "You see its about the airship works. Heart of Ymir...";
  28. mes "Very interesting thing i think...";
  29. getitem 501,1;
  30. set girls,1;
  31. next;
  32. mes "[Hallen]";
  33. mes "I really want to know something about it.. if somebody could help me...";
  34. mes "pity I can't go to einbroch Laboratory...";
  35. mes "never mind it just my feelings. Thanks for help..";
  36. next;
  37. if (select("I can do it for you:Sup, guy..") == 1) {
  38. mes "[Hallen]";
  39. mes "Really??? Thx. I will wait for you";
  40. } else {
  41. mes "Hallen";
  42. mes "Well, Thanks afterall.";
  43. }
  44. close;
  45. }
  46. if (fragmentauest==3) {
  47. mes "[Hallen]";
  48. mes "Thanks to you now i got it.. What is that Heart of Ymir..";
  49. close2;
  50. getexp 700,400;
  51. set fragmentauest,4;
  52. end;
  53. }
  54. mes "[Hallen]";
  55. mes "Hello, "+strcharinfo(0)+". Nice to see you on ship.";
  56. mes "Hows your trips? I suppose you have lots of to tell";
  57. mes "your children about";
  58. disablenpc "Ferlok";
  59. next;
  60. menu "Ye.. I have lots of tales..",-,"Nothing really interesting",l_inter,"Have any work for me?",l_work;
  61. mes "[Hallen]";
  62. mes "Ye.. I would like to listen to them too...";
  63. mes "But not now. I have some work to do";
  64. close;
  65. l_inter:
  66. mes "[Hallen]";
  67. mes "You are really shy to tell us. ^_- It doesn't matter";
  68. mes "we all know about your doings.";
  69. mes "Glad to see such a hero i can say";
  70. close;
  71. l_work:
  72. mes "[Hallen]";
  73. mes "Hm.. let me see... Ye. Its not so important, but if you have some";
  74. mes "free time, can you deliver the letter to my cousin Kaci?";
  75. next;
  76. if (select("yes, of course:no, sory") == 1) {
  77. mes "[Hallen]";
  78. mes "She can be found near gaming tables under deck. Thank you";
  79. getitem 7148,1;
  80. set fragmentauest,1;
  81. } else {
  82. mes "[Hallen]";
  83. mes "Its a pity. Good luck in training";
  84. }
  85. close;
  86. }
  87. //=====================================================================
  88. ein_in01,261,37,4 script #reader 111,4,4,{
  89. OnTouch:
  90. mes "[Code reader]";
  91. mes "Enter a valid 3 dig code to get information";
  92. mes "You can do it 3 times only. Be careful";
  93. next;
  94. set @number, rand(100,999);
  95. set @count, 0;
  96. l_input:
  97. input @input;
  98. if (@input != @number) {
  99. mes "[Code reader]";
  100. mes "you enter not valid digital";
  101. set @count,@count+1;
  102. next;
  103. if (@count < 3) goto l_input;
  104. mes "[Code reader]";
  105. mes "You have not enter code correct";
  106. close;
  107. }
  108. mes "[Card reader]";
  109. mes "It seems to you that you find the information. You try to learn it";
  110. next;
  111. enablenpc "Ferlok";
  112. mes "[Hallen]";
  113. mes "Please leave this plce. I will meet you on airplane";
  114. set fragmentauset,3;
  115. close;
  116. }
  117. }
  118. //===========================================================================
  119. ein_in01,255,33,4 script Ferlok 55,{
  120. mes "[Hallen]";
  121. mes "I have already told you to go to plane. Hurry!";
  122. close;
  123. }