16.02.2014, 19:27
Change this:
to
This should remove your error's.
45 = 45 vehicles.. Since the variable is 31, it only can hold 31 vehicles.. Therefore the next lot off vehicles won't get defined. Then you shall get your errors.
pawn Код:
new NooseVehicles[31];
pawn Код:
new NooseVehicles[45];
45 = 45 vehicles.. Since the variable is 31, it only can hold 31 vehicles.. Therefore the next lot off vehicles won't get defined. Then you shall get your errors.