18.11.2018, 04:00
Your code is trying to utilize 165 different "CarSpawns" but you've only initialized 1.
Replacing your old code with that will prevent you from out reaching the amount of coordinates you've created, but be aware of your vehicle limits when adding future coordinates.
Code:
public OnGameModeInit() { for(new i = 0; i < sizeof(CarSpawns); i++) { AddCar(i); } CarInit(); return 1; }