15.01.2011, 02:56
Esse teste que eu fiz estб certo ?
Nгo usei um filterscript porque nгo da para colocar playerid no OnFilterScriptInit
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(playerid,"Velocidade") == 1) { } } printf("[PVar] Functions: %d - Temp: %d",maxloop,(GetTickCount() - dCount)); //-------------------------------------------------------------------------- new bCount = GetTickCount(); for(new i; i < maxloop; ++i) { if(Velocidade[playerid] == 1) { } } printf("[MaxPlayers] Functions: %d - Temp: %d",maxloop,(GetTickCount() - bCount)); return 1; } [01:54:00] [PVar] Functions: 100000 - Temp: 28 [01:54:00] [MaxPlayers] Functions: 100000 - Temp: 12 //==========================================================================