My scorpion tank crashes people and I do not know why. When I spawn it, people crash or get invalid packet ghost object errors, according to what they say. This also occured with my APC vehicle, people claimed to have crashed with it. The one thing I find similar that could cause it is this
// Setup the car with some defaults tires & springs
for(%i = 0; %i < %this.numWheels; %i++)
{
%obj.setWheelTire(%i, %this.defaultTire);
%obj.setWheelSpring(%i, %this.defaultSpring);
}
//Multiple wheels
%obj.setWheelSteering(0,1);
%obj.setWheelSteering(1,1);
%obj.setWheelSteering(2,1);
%obj.setWheelSteering(3,1);
%obj.setWheelSteering(4,0);
%obj.setWheelSteering(5,0);
//Spring
%obj.setWheelPowered(0,true);
%obj.setWheelPowered(1,true);
%obj.setWheelPowered(2,true);
%obj.setWheelPowered(3,true);
%obj.setWheelPowered(4,true);
%obj.setWheelPowered(5,true);
But I do not know why.