// TMW2 scripts. // Author: // Jesusalva // Description: // 023-3-1 The First Monster King's Throne Room Configuration File 023-3-1 mapflag zone MMO 023-3-1,45,27,0 script #Finish02331 NPC_HIDDEN,0,0,{ end; OnTouch: .@n=getq(General_Narrator); .@q=getq2(FrostiaQuest_Homunculus); // Cheater Detected if (.@n < 15) { warp "Save", 0, 0; percentheal -100, -100; return false; } if (.@q < 3) { dispbottom l("The magic power outflowing in the room prevents you from leaving."); end; } .@mapn$="023-3-2"; warp .@mapn$, any(39,40), 58; end; } 023-3-1,45,80,0 script #Exit02331 NPC_HIDDEN,1,0,{ end; OnTouch: .@n=getq(General_Narrator); .@q=getq2(FrostiaQuest_Homunculus); // Cheater Detected if (.@n < 15) { warp "Save", 0, 0; percentheal -100, -100; return false; } if (.@n == 15) { dispbottom lg("I'm not a coward! I must press forward!"); end; } .@mapn$="001-7"; warp .@mapn$, 59, 45; end; }