ok so if i wanted him to have 250 life 250 armor could i use the random player to do the following
PHP Code:
health = register_cvar("amx_bomber_health", "250")
armor = register_cvar("amx_bomber_armor", "250")
PHP Code:
public suicide_bomber(id)
{
if(is_user_alive(id)
{
cs_set_user_model(id, "vip")
set_user_health(id, get_pcvar_num(health))
set_user_armor(id, get_pcvar_num(armor))
BlowUp(id);
return PLUGIN_CONTINUE
}
}