15.07.2012, 17:54
I want to know how to make when someone die to make timer
where it take him every 1 min -3 hp
where it take him every 1 min -3 hp
SetTimerEx("namehere", 60000, true, "i", playerid); // You can replace "namehere" to anything you want.
forward namehere(playerid); // If you changed "namehere", change it here too.
public namehere(playerid) // And here
{
SetPlayerHealth(playerid, -3);
return 1;
}