Code:
public zp_user_infect_attempt(id, infector)
{
if(!g_HasToxic[id])
return PLUGIN_HANDLED
return PLUGIN_CONTINUE
}
Code:
public zp_user_infect_attempt(id, infector)
{
if(g_HasToxic[id])
return ZP_PLUGIN_HANDLED //97
return PLUGIN_CONTINUE
}
the frist one work but the second is not working :O is ignore my true g_HasToxic[id]...
why ZP_PLUGIN_HANDLED is not block infection ????
__________________