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
|
// TMW2 Script
// Modified by Jesusalva
// Evol scripts.
// Authors:
// 4144
// Qwerty Dragon
// Reid
// Vasily_Makarov
// Jesusalva
// Description:
// Starting script of Evol Online, modified for TMW2.
// Translation:
// FR Translated
000-0,23,20,0 script Sailors NPC_SAILORS,6,6,{
OnTouch:
.@q=getq(General_Narrator);
if (.@q)
end;
//checkclientversion;
.@lang = requestlang();
if (.@lang >= 0 && .@lang <= 9) Lang = .@lang;
showavatar 3;
mesn "Narrator";
mesc l("You open your eyes. The salt water is not helping your vision.");
mesc l("(Click next button to advance dialogs)"), 3;
next;
mesc l("A blur shape forms in your front. It seems to be a large ship.");
next;
mesc l("Wait. A ship? Where are you, after all?");
next;
mesc l("Your body aches. You can't remember what happened. But this is not important now. The ships sailors are shouting at you!");
next;
showavatar NPC_ORC_MAN;
setcamnpc "Sailors", -64, -32;
mesn "Orc Voice";
mesq lg("Hey kid! Can you hear me?");
next;
showavatar NPC_SILVIO;
setcamnpc "Sailors", 0, -32;
mesn "Human Voice";
mesq lg("Hear you? How do you even know she can understand you?!", "Hear you? How do you even know he can understand you?!");
next;
showavatar NPC_TRITAN_MAN_SAILOR;
setcamnpc "Sailors", 144, -80;
mesn "Tritan Voice";
mesq lg("We speak various languages on this world. Let's try gesturing!");
next;
showavatar NPC_RAIJIN_MAN;
setcamnpc;
mesn "Raijin Voice";
mesq l("Hey you! Can you hear us? Are you okay?");
next;
restorecam;
asklanguage(LANG_ON_SEA);
showavatar NPC_SAILORS;
setcamnpc;
mes "";
mesn;
mesq lg("Oh, she's still alive!", "Oh, he's still alive!");
next;
showavatar NPC_TRITAN_MAN_SAILOR;
setcamnpc "Sailors", 144, -80;
mesq lg("This girl needs help, we need to rescue her!", "This guy needs help, we need to rescue him!");
next;
restorecam;
showavatar;
mesn "Narrator";
mesc l("The sailors take you aboard their ship.");
mesc l("You faint from the pain, but at least now, you are in good hands.");
next;
mesc l("Click on the NPCs (Non-Player Characters) around you to continue the introduction.");
next;
addtimer(15000,"Elmo#sailors::OnSlow");
warp "000-0-0", 26, 28;
closedialog;
close;
OnInit:
.sex = G_MALE;
end;
}
|