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
|
// Evol scripts.
// Authors:
// Vasily_Makarov
// Description:
// fix me
000-0.gat,0,0,0,0 script Sailors 0,0,0,{
mesn l("Narrator");
mesn l("You are on a raft, adrift in the sea. You don't remember anything before this. You can hear a voice from the sky. As you open your eyes and look around, you see a large ship. Some sailors are trying to talk to you.."); //italic
next;
mesn;
mesq g(l("Hey lady!"), l("Hey man!"));
next;
mesq l("Hey! Do you hear me? Are you okay?");
next;
menu
mes l("Try to move your hand to show them that you're alive"), -,
mes l("Don't move at all"), -;
next;
mesn;
mesq g(l("This girl needs rescuing, let's help her!"),
l("This guy needs rescuing, let's help him!"));
next;
mesn l("Narrator");
mesq l("The sailors take you aboard their ship to help you."); //italic
next;
warp 000-2-x.gat,0,0;
}
|