26.12.2012, 08:35
Err, well they're being used for various purposes. You can test them yourself using 'GetTickCount' function. Just like:
pawn Код:
public OnFilterScriptInit()
{
new tick = GetTickCount();
static test = 5;
printf("Time taken while executing filterscript with static test %d : %d", test, GetTickCount() - tick);
return 1;
}