summaryrefslogtreecommitdiff
path: root/world/map/npc/002-4/mine_triggerthree.txt
diff options
context:
space:
mode:
Diffstat (limited to 'world/map/npc/002-4/mine_triggerthree.txt')
-rw-r--r--world/map/npc/002-4/mine_triggerthree.txt50
1 files changed, 0 insertions, 50 deletions
diff --git a/world/map/npc/002-4/mine_triggerthree.txt b/world/map/npc/002-4/mine_triggerthree.txt
deleted file mode 100644
index f79f739a..00000000
--- a/world/map/npc/002-4/mine_triggerthree.txt
+++ /dev/null
@@ -1,50 +0,0 @@
-002-4,91,99,0|script|Button#mine-3|400,0,0
-{
- if (QL_MINEALL == 24) goto L_Trigger_Wrong_3;
- if (QL_MINEALL == 23) goto L_Trigger_3;
- if (QL_MINEALL == 22) goto L_Trigger_Wrong_3;
-
- mes "There is a large button on the ground. A key hole appears on the button.";
- goto L_Close;
-
-L_Trigger_Wrong_3:
- mes "There is a large button on the ground. A key hole appears on the button.";
- menu
- "Put the key in, turn right.", L_Right_Wrong_3,
- "Put the key in, turn left.", L_Left_Wrong_3,
- "Do nothing.", L_Nothing_3;
-
-L_Right_Wrong_3:
- set QL_MINEALL, 22;
- mes "You turn the key right.";
- goto L_Close;
-
-L_Left_Wrong_3:
- set QL_MINEALL, 22;
- mes "You turn the key left.";
- goto L_Close;
-
-L_Trigger_3:
- mes "There is a large button on the ground. A key hole appears on the button.";
- menu
- "Put the key in, turn right.", L_Right_3,
- "Put the key in, turn left.", L_Left_3,
- "Do nothing.", L_Nothing_3;
-
-L_Right_3:
- set QL_MINEALL, 22;
- mes "You turn the key right.";
- goto L_Close;
-
-L_Left_3:
- set QL_MINEALL, 24;
- mes "You turn the key left. A clicking sound echoes throughout the mine.";
- goto L_Close;
-
-L_Nothing_3:
- mes "You leave the button alone.";
- goto L_Close;
-
-L_Close:
- close;
-}