summaryrefslogtreecommitdiff
path: root/npc/026-1/ctrl.c
diff options
context:
space:
mode:
Diffstat (limited to 'npc/026-1/ctrl.c')
-rw-r--r--npc/026-1/ctrl.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/npc/026-1/ctrl.c b/npc/026-1/ctrl.c
new file mode 100644
index 000000000..d10534859
--- /dev/null
+++ b/npc/026-1/ctrl.c
@@ -0,0 +1,34 @@
+// TMW2 scripts.
+// Author:
+// Jesusalva
+// Description:
+// The Impregnable Fortress Control Files
+// Quest: General_Fortress
+// (MaxFloor+1, internal, internal)
+
+026-1,60,26,0 script Impregnable#B0F NPC_HIDDEN,0,0,{
+ end;
+
+OnTouch:
+ if (getq(General_Fortress) > 1) goto L_Warp;
+ mesc l(".:: Impregnable Fortress, %sF ::.", "B1"), 3;
+ msObjective(getq(General_Fortress) == 2, l("* TODO"));
+ msObjective($MK_TEMPVAR < MKIF_LV_B0F, l("Minimum wins: %d/%d", $MK_TEMPVAR, MKIF_LV_B2F));
+ mes "";
+ mesc l("Hint: TODO.");
+ end;
+
+L_Warp:
+ // Not unlocked
+ if ($GAME_STORYLINE >= 3 && $MK_TEMPVAR < MKIF_LV_B2F) {
+ mesc l("The gate is sealed shut."), 1;
+ mesc l("The monster army is still strong on this floor!"), 1;
+ mesc l("Minimum wins: %d/%d", $MK_TEMPVAR, MKIF_LV_B2F), 1;
+ close;
+ }
+ //warp "026-2", X, Y;
+ dispbottom l("Coming Soon, in Moubootaur Legends!");
+ end;
+
+}
+