// TMW2 scripts. // Author: // Jesusalva // Description: // The Impregnable Fortress Control Files // Quest: General_Fortress // (MaxFloor+1, internal, internal) 026-1,60,26,0 script Impregnable#B1F 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_B1F, 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; }