Why isn't Ham_Spawn called when player survives the round? Atleast this isn't working:
PHP Code:
public Ham_Spawn_post(id)
{
if(is_user_alive(id))
{
message_begin(MSG_ONE, g_pMsgHideWeapon, _, id);
write_byte(8);
message_end();
}
}
It only works if player was dead or just have joined server. After that, I keep seeing my radar, hp, ap.
I wonder, why is that.
EDIT: Let me rephrase it, that message isn't called after player spawn, just after death(in new round) and if he just joined.
__________________