Author Topic: Console Command to Increase Car Speeds?  (Read 1094 times)

I've seen alot of servers with the car's speed insane, for example Mith TDM Racing. I know it is a console command, and I know what it is, but I jsut forgot it, can anybody remind me?  :cookieMonster:

theres another one out there but this is one

vehicleDB.maxWheelSpeed = #;

/timescale 1.5

But really, you need to go and physically edit the scripts for those vehicles - changing them like the guy above suggested will not make that change for all the other people on the server and will cause all sorts of strange issues.

vehicleDB.maxwheelspeed=#;
transmitdatablocks();

You shouldn't be transmitting datablocks on-the-fly in a game. It's not how that command is meant to work at all.

The correct way to d o this is to change the max wheel speed either directly in the vehicle code, or in a script that is executed when the server starts up and before any client connects.

But feel free to do it in single player
The real safe way to use it with no one but yourself on the server, useful when you have to make a new datablock or change the color/data of an item.