13.08.2016, 23:12
Your DMVCar array size is 6
and in this
Change it to
and in this
PHP код:
stock IsDMVCar(vehicleid)
{
for(new i=0; i<MAX_VEHICLES; i++)
{
if(vehicleid == DMVCar[i]) //DMVCar can reach lot more than 6
return 1;
}
return 0;
}
PHP код:
stock IsDMVCar(vehicleid)
{
for(new i=0; i<6; i++)
{
if(vehicleid == DMVCar[i])
return 1;
}
return 0;
}