I just finished a ctf mission.. well almost... i created vehicle respawn, flag caps and other object respawns.... but i can't respawn the simple infantry.... its driving me nuts!!! i got a 3x5 respawn_east and 3x5 respawn_west. I simply can't figure out whats wrong.... but i think it might be with the blackout script somehow causing interference.
?!(player==_this select 0):exit
#Loop
@!(alive player)
cutText ["","Black out",1]
~30
cutText ["","Black in",1]
@alive player
goto "Loop"
that's the blackout script.... it should respawn the solder back in base, everytime i die it blacks out and goes into seagull mode.....
yes my desp.ext is respawn=3
perhaps something interferes from the clear corpse script also
?(!local server):exit
_n=-1
#loop
?(count (list EVERYUNIT) < 2):goto "loop"
_curlist = list EVERYUNIT
#loop2
_n = _n + 1
?(!alive (_curlist select _n)): [(_curlist select _n)] exec "common\delbody.sqs"
?(_n < (count _curlist)):goto "loop2"
_n=0
?(MISSIONSTOP):exit
goto "loop"
exit
please help...