18.02.2012, 22:26
While-loops are notorious for causing infinite loops, it's not very common in for-loops. These are some very quick examples about infinite for-loops:
pawn Код:
for( ; ; ) {}
for(new i; i < MAX_PLAYERS; i++)
{
--i;
}