blob: b676bc306cee770ef6060c2c40abf9c8bb1e3969 (
plain) (
tree)
|
|
// 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;
}
|