16.12.2010, 19:52
Do Timer IDs Start from 0 or From 1?
So i could check if (!TimerVariable)
So i could check if (!TimerVariable)
new Timer;
public OnPlayerConnect(playerid)
{
Timer = SetTimer...
}
new t = SetTimer("RandomMethod", 999999, 0);
new msg[128]; format(msg, sizeof(msg), "timerid: %i", t);
SendClientMessageToAll(-1, msg);
CMD:timeridtest(playerid, params[])
{
new msg[128];
new t1 = SetTimer("RandomMethod", 999999, 0);
format(msg, sizeof(msg), "t1 timerid: %i", t1);
printf(msg);
new t2 = SetTimer("RandomMethod", 999999, 0);
format(msg, sizeof(msg), "t2 timerid: %i", t2);
printf(msg);
new t3 = SetTimer("RandomMethod", 999999, 0);
format(msg, sizeof(msg), "t3 timerid: %i", t3);
printf(msg);
return 1;
}
t1 timerid: 1 t2 timerid: 2 t3 timerid: 3