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