summaryrefslogtreecommitdiff
path: root/npc/000-2-0/julia.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-0/julia.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-0/julia.txt')
-rw-r--r--npc/000-2-0/julia.txt21
1 files changed, 10 insertions, 11 deletions
diff --git a/npc/000-2-0/julia.txt b/npc/000-2-0/julia.txt
index 5eec4a20..87ae9b74 100644
--- a/npc/000-2-0/julia.txt
+++ b/npc/000-2-0/julia.txt
@@ -39,7 +39,7 @@ l_Menu:
l("Could you explain to me where I am?"), l_WhereIam,
l("What happened to me?"), l_What,
l("Can I read these rules again?"), l_Rules,
- l("Nothing, sorry."), l_Close;
+ l("Nothing, sorry."), l_Quit;
mes "";
mesn;
@@ -108,7 +108,7 @@ l_First:
next;
mesq col(l("6. Follow the social convention listed on the RFC1855 article."), 9);
next;
-
+
mesn;
mesq l("Oh, and I almost forgot! Do not give the password of your room to anybody! I am the only one who has the other key and I won't ask for yours so keep it secret and try not to use the same password for any other room in the future.");
next;
@@ -136,7 +136,7 @@ l_NoChanges:
l_YNMenu:
menu
l("Yes, I do."), l_Menu,
- l("No, none."), l_Close;
+ l("No, none."), l_Quit;
l_WhereIam:
mes "";
@@ -168,13 +168,6 @@ l_EsperiaMenu:
l("Sorry, but I can't tell you anything about that."), l_NoChanges,
l("Nothing, sorry."), l_NoChanges;
-l_Close:
- mes "";
- mesn;
- mesq l("Bye!");
-
- close;
-
l_Rules:
mes "";
mesn;
@@ -221,5 +214,11 @@ l_Regret:
close;
-}
+l_Quit:
+ mes "";
+ mesn;
+ mesq l("Bye!");
+ close;
+
+}