26.11.2009, 22:04
What about 15 minutes in millisecond's?
15000 ?
Is that correct?
If any 15 minutes then takes -5 health, and more 15 minutes, then taking -5.0....................
Where i do put timer to?.. OnPlayerSpawn? OnPlayerConnect?
15000 ?
Код:
SetTimer("HealthOff", 15000, true);
Код:
public HealthOff(playerid)
{
new Float:health;
GetPlayerHealth(playerid, health);
SetPlayerHealth(playerid, health -5.0);
return 1;
}
Where i do put timer to?.. OnPlayerSpawn? OnPlayerConnect?


