08.03.2015, 20:38
Instead of:
if(vehicleVariables[id][vVehicleInsurancePoints] == 10)
Do:
if(vehicleVariables[id][vVehicleInsurancePoints] >= 10)
Would be my guess.
if(vehicleVariables[id][vVehicleInsurancePoints] == 10)
Do:
if(vehicleVariables[id][vVehicleInsurancePoints] >= 10)
Would be my guess.