04.07.2012, 19:38
I ran this code and after 780 iterations, it started printing 0.
781 PVars per player.
pawn Код:
new str[32];
for(new i = 0; i < 800; ++i)
{
format(str, 32, "PVAR%d", i);
SetPVarInt(playerid, str, 1);
}
for(new i = 0; i < 800; ++i)
{
format(str, 32, "PVAR%d", i);
printf("%d PVAR %d", i, GetPVarInt(playerid, str));
}

