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
|
// Evol scripts.
// Authors:
// Reid
// Description:
// Cap'tain Nard dialogs.
000-2-3.gat,25,26,0,1 script Nard 306,{
mesn;
mesq l("Hello, Let me just present myself, I'm Captain Nard, it's me who's leader of this ship.");
next;
mesn;
mesq lg("It's nice to see that you woke up and that you are ok, Elmo came here to tell me this good news!");
next;
mesn "Elmo";
mesq l("Oh... Err, yes I did, or, well, good day to you!");
next;
mesn;
mesq l("Hehehe, he is a bit nervous, please excuse him, it's not everyday that we get a new member in the crew!");
next;
mesq l("So, how do you feel? I see that Julia did a marvelous job! You look in good health now.");
next;
l_Menu:
menu
lg("I feel ok."), l_Ok,
l("Who is this Julia?"), l_Julia,
lg("I'm sick, I'm going back to bed."), -;
mesn;
mesq l("That's a good idea, go rest a bit and I'll see you tomorow!");
close;
l_Julia:
mesn;
mesq l("You really have a bad amnesia.");
next;
mesq l("She is the nurse and the shipkeeper of this ship, and also an excellent cook!");
next;
mesq l("But more than everything, she is the one which took care of you when you were in coma.");
close;
l_Ok:
mesn;
mesq l("Good to know. From what Darlin reported to me, we'll soon come accross a little island, before we arrive in Artis.");
next;
mesq l("It'll be a good moment for you to do some exercice, as the ship is not very vast for that.");
close;
}
|