05.09.2012, 22:52
i made debugs with GetTickCount
Код:
[00:58:51] VariableName took 0 ms to be 3! [00:58:51] VarName took 0 ms to be 3!
pawn Код:
#include <a_samp>
new VariableName = 0;
new VarName = 0;
public OnFilterScriptInit()
{
new tick1 = GetTickCount();
VariableName = 3;
printf("VariableName took %i ms to be %i!", GetTickCount() - tick1, VariableName);
new tick2 = GetTickCount();
VarName = 3;
printf("VarName took %i ms to be %i!", GetTickCount() - tick2, VarName);
}

