summaryrefslogtreecommitdiff
path: root/npc/000-1/gugli.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-1/gugli.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-1/gugli.txt')
-rw-r--r--npc/000-1/gugli.txt7
1 files changed, 5 insertions, 2 deletions
diff --git a/npc/000-1/gugli.txt b/npc/000-1/gugli.txt
index d5af9185..1f376271 100644
--- a/npc/000-1/gugli.txt
+++ b/npc/000-1/gugli.txt
@@ -83,13 +83,13 @@ l_Menu:
rif(countitem("AquadaBox") > 0 || countitem("CroconutBox") > 0 || countitem("PlushroomBox") > 0, l("I have some food for you.")), l_CollectSmthing,
l("Who should I search for?"), l_SailorNames,
l("Where can I find your crew?"), l_Location,
- l("See you!"), close;
+ l("See you!"), l_Quit;
l_MenuDone:
menu
rif(getq(ShipQuests_Couwan) == 1, l("Couwan gave me this box, it is for you.")), l_Couwan,
l("I have collected all the boxes you needed."), l_TaskDone,
- l("See you!"), close;
+ l("See you!"), l_Quit;
l_SailorNames:
mes "";
@@ -219,4 +219,7 @@ l_AllComplete:
doevent "Gugli::OnTalk";
close;
+l_Quit:
+ close;
+
}