Okay. To make sure I have this straight is what would work? Thanks
scn TeleportScript
counter = 0
counting = 1
Begin ScriptEffectStart
. . .
End
Begin Gamemode
if ( counting )
if ( counter < 0.3 )
counter += getSecondsPassed
return
endif
do whatever
counting = 0
endif
End
Begin ScriptEffectUpdate
. . .
End
Begin ScriptEffectEnd
. . .
End