15.01.2011, 03:03
usa
Tenзo
pawn Code:
if(Velocidade[i] == 1)
{
pawn Code:
#define maxloop (100000) //loops para teste
new Velocidade[MAX_PLAYERS];
//==========================================================================
if (strcmp(cmdtext, "/Velocidade", true)==0)
{
new dCount = GetTickCount();
for(new i; i < maxloop; ++i)
{
if(GetPVarInt(i,"Velocidade") == 1)
{
}
}
printf("[PVar] Functions: %d - Temp: %d",maxloop,(GetTickCount() - dCount));
//--------------------------------------------------------------------------
new bCount = GetTickCount();
for(new i; i < maxloop; ++i)
{
if(Velocidade[i] == 1)
{
}
}
printf("[MaxPlayers] Functions: %d - Temp: %d",maxloop,(GetTickCount() - bCount));
return 1;
}
//==========================================================================