Hi!
I am a little confused as how do vehicle speeds work. In script I specified:
[CODE]
"engine"
{
"horsepower" "350"
"maxrpm" "6200"
"maxspeed" "90"
"maxReverseSpeed" "30" // mph
"autobrakeSpeedGain" "1.1" // 10% speed gain while coasting, put on the brakes after that
"autobrakeSpeedFactor" "3.0" // Brake is this times the speed gain
"autotransmission" "1"
"axleratio" "4.56"
"gear" "3.6" // 1st gear
"gear" "2.6" // 2nd gear
"gear" "1.5" // 3rd gear
"gear" "1.0" // 4th gear
"gear" "0.84" // 5th gear
"shiftuprpm" "5700"
"shiftdownrpm" "2350"
"boost"
{
"force" "1.5" // 1.5 car body mass * gravity * inches / second ^ 2
"duration" "6.0" // 6.0 second of boost
"delay" "3.0" // 3 seconds before you can use it again
"torqueboost" "1" // enable "sprint" mode of vehicle, not force type booster
"maxspeed" "120"
}
[/CODE]
BOOST: 120 mph
NORMAL: 90 mph
but actual max speeds were:
BOOST: 90 mph
NORMAL: 67 mph
What is going on here? Is the boost speed value just ignored?
Thanks for help!
You should've noticed this. From what I can tell is
BOOST:120-30=90
NORMAL: 90-30=60
So it's somewhere around 30 and some multiplied variable that it subrtacts so try 150 and 120.
Sorry, you need to Log In to post a reply to this thread.