diff options
author | Ben Longbons <b.r.longbons@gmail.com> | 2014-04-02 11:06:32 -0700 |
---|---|---|
committer | Ben Longbons <b.r.longbons@gmail.com> | 2014-04-02 22:21:29 -0700 |
commit | c0ba38cd4b68491e28e467889804ebc09c9c002e (patch) | |
tree | af2890e6fe20990d2a9b7c94b991be58f25a5d52 /world/map/npc/015-3/pot.txt | |
parent | 514a2f05cb335c1e9210fea58bc9a9a58478283f (diff) | |
download | serverdata-c0ba38cd4b68491e28e467889804ebc09c9c002e.tar.gz serverdata-c0ba38cd4b68491e28e467889804ebc09c9c002e.tar.bz2 serverdata-c0ba38cd4b68491e28e467889804ebc09c9c002e.tar.xz serverdata-c0ba38cd4b68491e28e467889804ebc09c9c002e.zip |
Clean up main scripts
Diffstat (limited to 'world/map/npc/015-3/pot.txt')
-rw-r--r-- | world/map/npc/015-3/pot.txt | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/world/map/npc/015-3/pot.txt b/world/map/npc/015-3/pot.txt index cb38b344..786f0b3b 100644 --- a/world/map/npc/015-3/pot.txt +++ b/world/map/npc/015-3/pot.txt @@ -24,12 +24,13 @@ goto L_HasWood; if (@cat >= 4) goto L_Close; + goto L_NeedsMilk; L_NeedsMilk: if (countitem("Milk") > 0) menu "Pour in some milk.", L_GiveMilk, - "Leave it alone.", -; + "Leave it alone.", L_Close; goto L_Close; L_GiveMilk: @@ -51,15 +52,15 @@ L_NeedsFood: menu "Put in a chicken leg.", L_GiveChicken, "Put in a steak.", L_GiveSteak, - "Leave it alone.", -; + "Leave it alone.", L_Close; if (countitem("ChickenLeg") > 0 && countitem("Steak") == 0) menu "Put in a chicken leg.", L_GiveChicken, - "Leave it alone.", -; + "Leave it alone.", L_Close; if (countitem("ChickenLeg") == 0 && countitem("Steak") > 0) menu "Put in a steak.", L_GiveSteak, - "Leave it alone.", -; + "Leave it alone.", L_Close; goto L_Close; L_GiveChicken: @@ -87,7 +88,7 @@ L_NeedsFur: if (countitem("WhiteFur") > 0) menu "Put a white fur next to the pot.", L_GiveFur, - "Leave it alone.", -; + "Leave it alone.", L_Close; goto L_Close; L_GiveFur: @@ -98,7 +99,7 @@ L_NeedsWood: if (countitem("RawLog") > 0) menu "Put a wooden log next to the pot.", L_GiveWood, - "Leave it alone.", -; + "Leave it alone.", L_Close; goto L_Close; L_GiveWood: |