I wanted to have the jeep have car sounds, and it works. What I did was change the Train vehicle's models and sounds.
The only problem is, the script below does something to the wheels and either it
Does not steer
3 wheels steer, but one doesnt, creating this very odd drifting thing
No wheels appear at all
Can someone fix this? I can't remove it and don't know how to edit it.
function Train::onadd(%this, %obj)
{
parent::onadd(%this,%obj);
//Switched to first position so the vehicle is created before it's checked on
%obj.setWheelSteering(0,0);
%obj.setWheelSteering(1,0);
%obj.setWheelSteering(2,0);
%obj.setWheelSteering(3,0);
%obj.setWheelSteering(4,0);
%obj.setWheelPowered(1,True);
%obj.setWheelPowered(2,True);
%obj.setWheelPowered(3,True);
%obj.setWheelPowered(4,True);
TrainSpeedCheck(%this, %obj);
TrainSmokeCheck(%obj);
//Traintire.radius=0.65; // Messes others players
//Trainbacktire.radius=0.55; // up so they are glitchy
}