09.07.2018, 17:53
Im working on a system for which i need Growth, i mean i need function/system by which i can automatically grow numbers in fixed time.
new randtime = random(60000 - 30000)+30000; //this generates a random number between 60,000 and 30,000
SetTimerEx("Grow", randtime, false, "i", playerid);
forward Grow(playerid);
public Grow(playerid)
{
//your code for the grow
new randtime = random(60000 - 30000)+30000; //this generates a random number between 60,000 and 30,000
SetTimerEx("Grow", randtime, false, "i", playerid);
}
PHP Code:
|
Hey buddy thanks, but i want to send silentclientmessage to player when times end and one more thing, i want lable of time, i mean when time start the label will be created (i can do that but please make me function) Health 0% to 100% under 1:30 as u made that timer
|