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
|
// Evol scripts.
// Authors:
// Vasily_Makarov
// Reid
// 4144
// Description:
// Start script of Evol Online.
000-0.gat,23,20,0,1 script Sailors 305,6,6,{
OnTouch:
requestlang @lang;
if (@lang >= 0 && @lang <= 7) setlang @lang;
mesn "Narrator";
mes col(l("You are on a raft, adrift in the sea."), 9);
next;
mes col(l("You don't remember anything before this."), 9);
next;
mes col(l("Suddenly, you hear a voice from the sky."), 9);
next;
mes col(l("As you open your eyes and look around, you see a large ship."), 9);
next;
mes col(l("Some sailors are trying to talk to you.."), 9);
next;
mesn "Orc Voice";
mesq lg("Hey Frenchy!");
next;
mesn "Elfen Voice";
mesq lg("Why Frenchy? It's a Russian!");
next;
mesn "Tritan Voice";
mesq lg("What are you saying guys, it's a yoiis!");
next;
mesn "Raijin Voice";
mesq g(l("You stupid, it's an english, look at her head form."),
l("You stupid, it's an english, look at his head form."));
next;
mesq l("Hey you! Do you hear us? Are you okay?");
next;
menu
"I hear you..." + " (English)", -,
"Je vous entends..." + " (Français)", -,
"Да я вас слышу..." + " (Русский)", -,
"Te oigo..." + " (Español)", -,
"Eu te ouço..." + " (Português)", -,
"I höre euch..." + " (Deutsch)", -,
"'k hoar ui wel..." + " (Vloams)", -,
"Słyszę cię..." + " (Polish)", -;
set @lang, @menu-1;
if (@lang < 0 || @lang > 7) close;
setlang @lang;
mesn;
mesq g(l("Oh, she's still alive!"),
l("Oh, he's still alive!"));
next;
mesq g(l("This girl needs help, let's rescue her!"),
l("This guy needs help, let's rescue him!"));
next;
mesn "Narrator";
mesq col(l("The sailors take you aboard their ship to help you."), 9);
next;
mesq col(l("Click on the NPCs around you to continue the introduction."), 9);
next;
warp "000-0-0.gat",22,22;
close;
}
|