diff options
author | Hal9000 <miglietta.francesco@gmail.com> | 2013-03-06 23:02:48 +0100 |
---|---|---|
committer | Hal9000 <miglietta.francesco@gmail.com> | 2013-03-06 23:02:48 +0100 |
commit | 544a6f5971744e5b177a613ef58886f68d9c206d (patch) | |
tree | ebadb7cae701ac31d244f9a616268f1e85301641 | |
parent | d5ff05c0c4f5fb84678da0b1ac5339deb1ce1f49 (diff) | |
download | clientdata-544a6f5971744e5b177a613ef58886f68d9c206d.tar.gz clientdata-544a6f5971744e5b177a613ef58886f68d9c206d.tar.bz2 clientdata-544a6f5971744e5b177a613ef58886f68d9c206d.tar.xz clientdata-544a6f5971744e5b177a613ef58886f68d9c206d.zip |
Use "closedialog" function just for player input dialogue end.
-rw-r--r-- | npc/000-2-1/chefgado.txt | 20 | ||||
-rw-r--r-- | npc/000-2-1/knife.txt | 1 |
2 files changed, 10 insertions, 11 deletions
diff --git a/npc/000-2-1/chefgado.txt b/npc/000-2-1/chefgado.txt index 53478b99..5680265b 100644 --- a/npc/000-2-1/chefgado.txt +++ b/npc/000-2-1/chefgado.txt @@ -32,7 +32,7 @@ if (@r == 1) mesq l("Where is the damn salt?! Give me the salt, I know you have it!"); if (@r == 2) mesq l("Are you going to stand here all day long? Do the dishes or go away."); - goto l_Quit; + close; l_QuestStart: mesn; @@ -47,7 +47,7 @@ l_QuestStart: mesn; mesq l("Yeah, yeah, of course you don't..."); - goto l_Quit; + close; l_Rude: mes ""; @@ -115,7 +115,7 @@ l_OpenCroconut: next; mesq l("Now move!"); - goto l_Quit; + close; l_GotAll: mes ""; @@ -138,7 +138,7 @@ l_GotAll: setq ShipQuests_ChefGado, 2; getitem "PoisonedDish", 1; - goto l_Quit; + close; l_Need: @@ -150,13 +150,13 @@ l_Need: next; mesq l("... And 1 @@.", getitemlink("SeaDrops")); - goto l_Quit; + close; l_PoisonAccepted: mesn; mesq l("Fool! Just come back here when you'll be done with our little... 'Secret mission'."); - goto l_Quit; + close; l_PoisonJulia: mesn; @@ -171,13 +171,13 @@ l_PoisonJulia: getitem "Bread", 2; setq ShipQuests_ChefGado, 4; - goto l_Quit; + close; l_QuestComplete: mesn; mesq l("Oh, it's you. I think it's better we do not talk for a while. They suspect something."); - goto l_Quit; + close; l_Aborting: mesn; @@ -198,13 +198,13 @@ l_Aborting: next; mesq l("You're like the rest of this filthy crew, I can't trust you!"); - goto l_Quit; + close; l_QuestAborted: mesn; mesq lg("You're like the rest of this filthy crew. Your name is now on the traitors list!"); - goto l_Quit; + close; l_Quit: closedialog; diff --git a/npc/000-2-1/knife.txt b/npc/000-2-1/knife.txt index 939eb515..7797f4f5 100644 --- a/npc/000-2-1/knife.txt +++ b/npc/000-2-1/knife.txt @@ -40,6 +40,5 @@ l_Give: next; mes col(l("Items have different effects. Some will heal you, some can be used as weapons or armor, and some can be sold for gold."), 9); - closedialog; close; } |