Quote:
Originally Posted by HowToRuski
Well thanks for the help but looks like it didnt help me, still crashing :/
|
I didn't gave you the solve i told there's some wrongs in this plugin and i saw that problem
Edit: I saw another problem in this faction
PHP Code:
public respawn(o_id[])
{
new id = o_id[0]
if(get_user_team(id) == 3 || is_user_alive(id))
return PLUGIN_CONTINUE
ExecuteHamB(Ham_CS_RoundRespawn, id)
return PLUGIN_CONTINUE
}
When plugin disable user alive in respawn faction so it mean this faction will never work.
so change those codes from:
PHP Code:
if(get_user_team(id) == 3 || is_user_alive(id))
return PLUGIN_CONTINUE
To:
PHP Code:
if(get_user_team(id) == 3 || !is_user_alive(id))
return PLUGIN_CONTINUE