scn FNToronalPumpDes
float timer
short doonce
begin OnActivate
if doonce == 0
disableplayercontrols
FNToronalBridgeGigGateWay.playgroup backward 1
FNToronalPumpFor01.playgroup forward 1
FNToronalTank01.playgroup forward 1
FNToronalTank02.playgroup forward 1
FNToronalTank03.playgroup forward 1
set timer to 7
set doonce to 1
endif
End
begin GameMode
if doonce == 0
return
endif
if timer >= 0 && doonce == 1
set timer to timer - getSecondsPassed
endif
if timer <= 0
setStage FNHQ04 20
enableplayercontrols
FNtoronalCollisionBoxNoWay.enable
endif
End