summaryrefslogtreecommitdiff
path: root/world/map/npc/015-3/pot.txt
diff options
context:
space:
mode:
Diffstat (limited to 'world/map/npc/015-3/pot.txt')
-rw-r--r--world/map/npc/015-3/pot.txt36
1 files changed, 21 insertions, 15 deletions
diff --git a/world/map/npc/015-3/pot.txt b/world/map/npc/015-3/pot.txt
index a965223d..ae843863 100644
--- a/world/map/npc/015-3/pot.txt
+++ b/world/map/npc/015-3/pot.txt
@@ -1,6 +1,6 @@
// The pot where the player can deposit stuff for the cat.
-015-3.gat,37,29,0 script Pot 127, {
+015-3.gat,37,29,0|script|Pot|127,{
if (Katze > 0)
mes "It's that old pot again.";
@@ -8,16 +8,20 @@
mes "It's a pot.";
next;
- if (Katze == 1 && KatzeBeenOutside == 1) goto L_NeedsFood;
- if (Katze == 1) goto L_HasMilk;
-
- if (Katze == 2 && KatzeBeenOutside == 1) goto L_NeedsFur;
- if (Katze == 2) goto L_HasFood;
-
- if (Katze == 3) goto L_NeedsWood;
-
- if (Katze == 4 && KatzeBeenOutside == 0) goto L_HasWood;
- if (Katze >= 4) goto L_Finished;
+ if (Katze == 1 && KatzeBeenOutside == 1)
+ goto L_NeedsFood;
+ if (Katze == 1)
+ goto L_HasMilk;
+ if (Katze == 2 && KatzeBeenOutside == 1)
+ goto L_NeedsFur;
+ if (Katze == 2)
+ goto L_HasFood;
+ if (Katze == 3)
+ goto L_NeedsWood;
+ if (Katze == 4 && KatzeBeenOutside == 0)
+ goto L_HasWood;
+ if (Katze >= 4)
+ goto L_Finished;
L_NeedsMilk:
if (countitem("Milk") > 0)
@@ -76,8 +80,9 @@ L_NeedsFur:
next;
if (countitem("WhiteFur") > 0)
- menu "Put a white fur next to the pot", L_GiveFur,
- "Leave it alone", -;
+ menu
+ "Put a white fur next to the pot", L_GiveFur,
+ "Leave it alone", -;
close;
L_GiveFur:
@@ -86,8 +91,9 @@ L_GiveFur:
L_NeedsWood:
if (countitem("RawLog") > 0)
- menu "Put a wooden log next to the pot", L_GiveWood,
- "Leave it alone", -;
+ menu
+ "Put a wooden log next to the pot", L_GiveWood,
+ "Leave it alone", -;
close;
L_GiveWood: