14.01.2018, 18:16
You should probably log the parameters from the function and the vehicle model. Something like:
And than see if some wrong components are added to a model which does not support it.
Code:
public OnVehicleMod(playerid, vehicleid, componentid)
{
printf("Player: %i, Vehicle: %i, Model: %i, Component: %i", playerid, vehicleid, GetVehicleModel(vehicleid), componentid);
return 1;
}

