summaryrefslogtreecommitdiff
path: root/npc/functions/main.txt
diff options
context:
space:
mode:
Diffstat (limited to 'npc/functions/main.txt')
-rw-r--r--npc/functions/main.txt5
1 files changed, 4 insertions, 1 deletions
diff --git a/npc/functions/main.txt b/npc/functions/main.txt
index b71fb339..7a2ea64d 100644
--- a/npc/functions/main.txt
+++ b/npc/functions/main.txt
@@ -89,6 +89,7 @@ function script strip {
// 0x1 -- blank line at beginning
// 0x2 -- blank line at the end
// 0x4 -- use last "next;"
+// 0x8 -- don't use first "mesn;"
function script narrator {
.@start = 0;
.@argc = getargcount();
@@ -103,7 +104,9 @@ function script narrator {
if (.@flags & 0x1)
mes "";
- mesn l("Narrator");
+ if (!(.@flags & 0x8))
+ mesn l("Narrator");
+
for (.@i = .@start; .@i < .@argc; .@i++)
{
mes col(getarg(.@i), 9);