I got a question about
How to set If u die u dont respawn and be spectator?
I use this code but u can press ESC and chose a team so u respawn..
I dont want to use the gametypes SD
onDeath()
{
self endon("disconnect");
self waittill ("death");

self notify("menuresponse", game["menu_team"], "spectator");
self allowSpectateTeam( "allies", true );
self allowSpectateTeam( "axis", true );
self allowSpectateTeam( "none", false );
self allowSpectateTeam( "freelook", false );

}