I currently have this:
if not Group.getByName('RUS-RESPW-TEST-1') then
trigger.action.outText("Russian T90 Destroyed. Reinforcements incoming in 120 seconds...", 6, true)
timer.scheduleFunction(myRespawnGroup, 'RUS-RESPW-TEST-1', timer.getTime() + 120)
end
With an function in a seperate trigger:
function myRespawnGroup(groupName)
mist.respawnGroup(groupName, true)
end
This code works, However, the message that it gives, saying, they died stays in screen for 120 seconds, or for as long as I set the timer to... which can fill up the screen rapidly when several groups are being killed close together.