summaryrefslogtreecommitdiff
path: root/npc/000-2-1/chefgado.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-1/chefgado.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-1/chefgado.txt')
-rw-r--r--npc/000-2-1/chefgado.txt13
1 files changed, 6 insertions, 7 deletions
diff --git a/npc/000-2-1/chefgado.txt b/npc/000-2-1/chefgado.txt
index a53cf7a9..c171e9eb 100644
--- a/npc/000-2-1/chefgado.txt
+++ b/npc/000-2-1/chefgado.txt
@@ -39,9 +39,7 @@ l_QuestStart:
menu
l("How rude! What is the reason behind your malice?"), l_Rude,
- l("I swear, I do not eat so much."), -;
-
- close;
+ l("I swear, I do not eat so much."), l_Quit;
l_Rude:
mes "";
@@ -79,9 +77,7 @@ l_Rude:
menu
l("Sure, why not?"), l_Sure,
- l("Sea water?! I will not help you with your evil plan!"), -;
-
- close;
+ l("Sea water?! I will not help you with your evil plan!"), l_Quit;
l_Sure:
setq ShipQuests_ChefGado, 1;
@@ -99,7 +95,7 @@ l_QuestAccepted:
menu
rif(countitem("PiouLegs") > 1 && countitem("Croconut") > 0 && countitem("Aquada") > 0 && countitem("SeaDrops") > 0, l("All your... Fresh ingredients are ready to be cooked.")), l_GotAll,
l("What are your needs?"), l_Need,
- l("Not yet. I will be back soon."), close;
+ l("Not yet. I will be back soon."), l_Quit;
l_GotAll:
mes "";
@@ -161,4 +157,7 @@ l_QuestAborted:
close;
+l_Quit:
+ close;
+
}