01.02.2012, 15:39
pawn Code:
for(new v = 0; v < MAX_VEHICLES; v ++)
{
for(new i = 0; i < MAX_PLAYERS; i ++)
{
if(GetPlayerVehicleID(i) == v) continue;
}
}
I know I should use a stock for this, but just wondering - I try to evade using stocks if I just use this for one command.
Jochem