diff options
author | Reid Yaro <reidyaro@gmail.com> | 2013-01-23 01:31:49 +0000 |
---|---|---|
committer | Reid Yaro <reidyaro@gmail.com> | 2013-01-23 01:32:59 +0000 |
commit | 7c1e50744bd734f601c0cefbca3033696a65126e (patch) | |
tree | c1bdfba0d5d99fcaf3615b2245b2dc079f36fea5 /npc/000-1 | |
parent | 7a8f7ea78eac9d4837882e0530d2622469a6dc86 (diff) | |
download | serverdata-7c1e50744bd734f601c0cefbca3033696a65126e.tar.gz serverdata-7c1e50744bd734f601c0cefbca3033696a65126e.tar.bz2 serverdata-7c1e50744bd734f601c0cefbca3033696a65126e.tar.xz serverdata-7c1e50744bd734f601c0cefbca3033696a65126e.zip |
Correct bug on Gugli script.
Diffstat (limited to 'npc/000-1')
-rw-r--r-- | npc/000-1/gugli.txt | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/npc/000-1/gugli.txt b/npc/000-1/gugli.txt index 36bd8447..60603942 100644 --- a/npc/000-1/gugli.txt +++ b/npc/000-1/gugli.txt @@ -81,9 +81,9 @@ l_Menu: menu rif(getq(ShipQuests_Couwan) == 1, l("Couwan gave me this box, it is for you.")), l_Couwan, 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!"), l_Quit; + rif(getq(ShipQuests_Couwan) < 2, l("Who should I search for?")), l_SailorNames, + rif(getq(ShipQuests_Couwan) < 2, l("Where can I find your crew?")), l_Location, + l("Bye!"), l_Quit; l_MenuDone: menu @@ -205,7 +205,7 @@ l_TaskCompleted: next; mesq l("Tell him that everything went fine and that we're almost done with the food."); - close; + goto l_Menu; l_AllComplete: mesq l("Elmo told me what Nard said, congrats!"); @@ -213,6 +213,8 @@ l_AllComplete: mesq g(l("You're one of us now, that's great! I was sure that you were a kind lady when I first saw you!"), l("You're one of us now, that's great! I was sure that you were a good man when I first saw you!")); + goto l_Menu; + l_Quit: close; |