diff options
Diffstat (limited to 'npc')
-rw-r--r-- | npc/003-1/mariusthebard.txt | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/npc/003-1/mariusthebard.txt b/npc/003-1/mariusthebard.txt index b3210883d..8f8dcdf90 100644 --- a/npc/003-1/mariusthebard.txt +++ b/npc/003-1/mariusthebard.txt @@ -6,12 +6,11 @@ // Marius the Bard is a bard. Helps player with the world's background story. 003-1,88,135,0 script Marius The Bard NPC_ELVEN_MAN_TRADER,{ - -//hello; mesn; mesq l("Hello adventurer, what may this humble minstrel do for you today?"); next; +L_Main: menu l("Who, or what are you?"), L_Who, l("Where exactly am I?"), L_Where, @@ -26,7 +25,8 @@ L_Who: mesq l("Now I travel by the world, composing songs about the things I see."); next; mesq l("I try to improve my skills every day. One day, I will sing a song no one will ever forget."); - close(); + next; + goto L_Main; L_Where: mes ""; @@ -40,7 +40,8 @@ L_Where: mesq l("The magic council have only a handful set of them, and they let only the most skilled ones get it."); next; mesq l("If you want, you can ask there for one. They are at the big building at northwest."); - close(); + next; + goto L_Main; L_Music: mesc l("But do you want to hear a song about the world, or about grinding?"); @@ -85,7 +86,8 @@ L_Music_World: mes l("Because heroes are not born, rather, they are made!"); mes l("Ah! Greedy humans! Stand up to save our world!"); mes l("Ah! Greedy humans! End this war which our greed has stroke!"); - close(); + next; + goto L_Main; L_Music_Grind: mes l("Grind grind grind the slime!"); @@ -113,7 +115,8 @@ L_Music_Grind: next; mesc l("Authorship: Xanthem (DiamondPython)"); mesc l("Date: 2019-03-05, 03:14 UTC"); - close; + next; + goto L_Main; L_Bye: mes ""; |