diff options
author | jesusalva <cpntb1@ymail.com> | 2018-02-08 09:51:15 -0200 |
---|---|---|
committer | jesusalva <cpntb1@ymail.com> | 2018-02-08 09:51:15 -0200 |
commit | 378579f52703249a1cbe0025603fa23c757abe50 (patch) | |
tree | 6061bcdf7f21237cb92195c0e827f4e1dda76edb | |
parent | f227bdbc1b1945ff06fa9d5ccf98e01c616eeb5f (diff) | |
download | serverdata-378579f52703249a1cbe0025603fa23c757abe50.tar.gz serverdata-378579f52703249a1cbe0025603fa23c757abe50.tar.bz2 serverdata-378579f52703249a1cbe0025603fa23c757abe50.tar.xz serverdata-378579f52703249a1cbe0025603fa23c757abe50.zip |
Update the Bard with basic structure
-rw-r--r-- | npc/003-1/mariusthebard.txt | 33 |
1 files changed, 32 insertions, 1 deletions
diff --git a/npc/003-1/mariusthebard.txt b/npc/003-1/mariusthebard.txt index fe7169084..b676bc306 100644 --- a/npc/003-1/mariusthebard.txt +++ b/npc/003-1/mariusthebard.txt @@ -1,10 +1,41 @@ +// 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(); -hello; +L_Bye: + mesq l("todo"); + close(); OnInit: .sex = G_MALE; |