diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-03-15 18:04:20 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-03-15 18:04:20 -0300 |
commit | 753859f5a8101256973e0b962190473afaf79221 (patch) | |
tree | 8ab7b0802d8193aa03f9032ca800b6a71436b132 | |
parent | 3428a29f55dbbde570ad2aaa753c5db8bba8d81c (diff) | |
download | serverdata-753859f5a8101256973e0b962190473afaf79221.tar.gz serverdata-753859f5a8101256973e0b962190473afaf79221.tar.bz2 serverdata-753859f5a8101256973e0b962190473afaf79221.tar.xz serverdata-753859f5a8101256973e0b962190473afaf79221.zip |
Marius the Bard now returns to menu options
-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 ""; |