PHP Code:
public plugin_init()
{
RegisterHam( Ham_Spawn, "player", "Player_Spawn", 1 )
}
public Player_Spawn(id)
{
if(cs_get_user_team == CS_TEAM_T && is_user_alive( id ) ) {
ExecuteHamB(Ham_CS_RoundRespawn, id) //respawn again the player maybe?
set_user_health( id, 100 ) //100 or w/e you want starting health
}
}
not sure...
__________________