summaryrefslogtreecommitdiff
path: root/npc/000-2-3/box.txt
diff options
context:
space:
mode:
authorHal9OOO <miglietta.francesco@gmail.com>2012-12-09 14:24:26 +0100
committerHal9OOO <miglietta.francesco@gmail.com>2012-12-09 14:24:26 +0100
commitdecb212a7b7dc990b0d89d67b77de01afed1fb40 (patch)
tree8b0ba71d5d6e0179132d471613781777ac6b1617 /npc/000-2-3/box.txt
parent193c7147eaa1a7b1a4ef633beb8985e60a144162 (diff)
downloadserverdata-decb212a7b7dc990b0d89d67b77de01afed1fb40.tar.gz
serverdata-decb212a7b7dc990b0d89d67b77de01afed1fb40.tar.bz2
serverdata-decb212a7b7dc990b0d89d67b77de01afed1fb40.tar.xz
serverdata-decb212a7b7dc990b0d89d67b77de01afed1fb40.zip
Correct close behaviour in many dialogues. Democratize l_Quit function.
Diffstat (limited to 'npc/000-2-3/box.txt')
-rw-r--r--npc/000-2-3/box.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/npc/000-2-3/box.txt b/npc/000-2-3/box.txt
index 806414e6..45df8493 100644
--- a/npc/000-2-3/box.txt
+++ b/npc/000-2-3/box.txt
@@ -27,7 +27,7 @@
menu
l("Take a Bandana."), -,
- l("Nothing."), l_Close;
+ l("Nothing."), l_Quit;
if (@q == 1) goto l_NotYet;
if (@q == 2) goto l_Give;
@@ -53,7 +53,7 @@
menu
l("Why not, I've got plenty of free time."), -,
- l("I think that I'm still a bit sick."), l_Close;
+ l("I think that I'm still a bit sick."), l_Quit;
mes "";
mesn "Nard";
@@ -79,9 +79,6 @@ l_NotYet:
mesn "Nard";
mesq l("Please don't touch these hats, they are for crew members only.");
-l_Close:
- close;
-
l_Give:
setcamnpc "Nard";
mes "";
@@ -109,4 +106,7 @@ l_Already:
close;
+l_Quit:
+ close;
+
}