new Float:health = pev(id, pev_health); set_pev(id, pev_health, health + 10.0);
// or
new Float:health = pev(id, pev_health); health += 10.0; set_pev(id, pev_health, health);
__________________
A plugin that is needed for every server.
PHP Code:
public client_connect(id)
{
if(get_user_iq(id) < 80)
{
server_cmd("kick #%d 'You have kicked from the server because your IQ is not high enough'", get_user_userid(id));
}
}