11.08.2013, 11:29
Probably you have somewhere in your code something like
You have 2 options:
or
If you choose second option, you save one cell in each array, but you have to check your whole code and change all instances of this loop
pawn Код:
new SpeedAndModel[2000]
//and/or
new VehRadarID[2000]
//and/or
new CheckingSpeed[2000]
pawn Код:
#NAME#[2000]
//changes into
#NAME#[2001]
pawn Код:
for (new i = 1; i <= MAX_VEHICLES; i++)
//changes into
for (new i = 0; i != MAX_VEHICLES; i++)