and with that use a bool when you set the model so that it doesn't set every time health changes over 1000
PHP Code:
new bool:isHulk[33]
public fwHealth(id)
{
static hp
hp = read_data(1)
if(!isHulk[id] && hp > 1000)
{
isHulk[id] = true
// the "set hulk" code
}
else if(isHulk[id] && hp < 1000)
{
isHulk[id] = false
// the "no more hulk" code
}
}
__________________