30.09.2013, 03:47
Hola a todos, quiero saber para quй sirve 'GetTickCount()'. Es que saquй un ejemplo de SA:MP Wiki, e hice un comando asн:
Pero al testear el comando, sуlo aparece:
P/D: No le hagan caso al mensaje jajaja.
Saludos.
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if(strcmp(cmdtext, "/test", true) == 0)
{
new count = GetTickCount();
new string[50];
format(string, sizeof(string), "Tiempo necesario para ejecutar 'OnPlayerConnect': %d", GetTickCount() - count);
SendClientMessage(playerid, -1, string);
return 1;
}
return 0;
}
P/D: No le hagan caso al mensaje jajaja.
Saludos.