// TMW2 scripts. // Authors: // Jesusalva // Description: // Gemini Sisters Quest - Traps 014-2,230,58,0 script #GeminiTrap1 NPC_HIDDEN,0,0,{ OnTouch: if (getq(General_Narrator) < 16) { mesc l("WARNING:"), 1; mes l("You are not welcome on this island."); mes ""; mes l("No mercy will be shown, turn back now!"); mes ""; mes l("-- Valia G."); close; } end; } 014-2,230,60,0 script #GeminiTrap2 NPC_HIDDEN,0,0,{ OnTouch: if (getq(General_Narrator) < 16) { slide 230, 56; dispbottom l("You are pushed back with extreme force!"); percentheal -15, 0; } end; } 014-2,228,64,0 script #GeminiTrap3 NPC_HIDDEN,0,0,{ OnTouch: if (getq(General_Narrator) < 16) { slide 230, 56; dispbottom l("You are pushed back with absolute force!"); percentheal -85, 0; } end; } // Should never trigger 014-2,221,69,0 script #GeminiTrap4 NPC_HIDDEN,1,1,{ OnTouch: if (getq(General_Narrator) < 16) { warp "Save", 0, 0; dispbottom l("You don't feel so well... And then, you're dead."); die(); end; } end; }