14.03.2008, 13:31
Got another treat for ya: 
When using FOR-loops several times in a script, and putting it like this:
It gives warnings that variable i "shadows" another one, which it doesn't. This problem doesn't happen in Pawno, so it almost has to be something here... or am I wrong?

When using FOR-loops several times in a script, and putting it like this:
pawn Code:
for (new i;i<10;i++)
{
foo=bar;
}

