24.10.2012, 21:33
Hay, i want to do like when player spawn, it will show him in clientmessage how many miliseconds it did take him :3, I am not sure, but is this also releated to timers?
new spawncount;
public OnPlayerRequestClass(playerid, classid)
{
spawncount = GetTickCount();
return 1;
}
new spawntimestring[87];
format(spawntimestring, 87, "It took you %d to select your class and spawn", GetTickCount() - spawncount);
SendClientMessage(playerid, -1, spawntimestring);