Code:
if(get_user_health(targetid) <= 1)
{
user_silentkill(targetid)
make_deathmsg (id,targetid,0,"Loss of Life")
}
else set_user_health(targetid,get_user_health(targetid)-1)
What would I do to repeat that ever 20 secs? I know to start it would be
Code:
set_task(20.0,???...)
But what would I put in ??? to make it run that function and only that function forever?