i would use it like this
PHP Code:
public FW_PlayerPreThink(id)
{
// if player not alive or not zombie plugin returns continue
if (!is_user_alive(id) || !zp_get_user_zombie[id]) return PLUGIN_CONTINUE
}
PHP Code:
public FW_PlayerPreThink(id)
{
// if player not alive or zombie plugin returns continue
if (!is_user_alive(id) || zp_get_user_zombie[id]) return PLUGIN_CONTINUE
}
__________________