on amxmodx 1.0 respawn is non functional ... little correction and everything works great
in ct_respawn function, change this
Code:
if(get_user_team(id) == 0 || is_user_alive(id))
return PLUGIN_CONTINUE
to
Code:
if(get_user_team(id) == 0 || is_user_alive(id)) {
save_respawn[2][id] = 0
return PLUGIN_CONTINUE
}
with this change, it isn't neccesary call other respawn function ... maybe