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
|
// The Mana World 2 Project
// This file is part of TMW2 Project.
// Author:
// Saulc
// Jesusalva
// Description:
// Marius the Bard is a bard. Helps player with the world's background story.
003-1,88,135,0 script Marius The Bard NPC_WATER_SPLASH,{
//hello;
mesn;
mesq l("Hello adventurer, what may this humble minstrel do for you today?");
next;
menu
"Who, or what are you?", L_Who,
"Where exactly am I?", L_Where,
"Can you sing me a song?", L_Music,
"Actually, nothing. Bye!", L_Bye;
L_Who:
mesq l("todo");
close();
L_Where:
mesq l("todo");
close();
L_Music:
mesq l("todo");
close();
L_Bye:
mesq l("todo");
close();
OnInit:
.sex = G_MALE;
.distance = 3;
end;
}
|