How can I increase the reverse speed on A-Chassis Tune?

Hi!

I’ve been looking around the A-Chassis Tune script for my team’s game and I want to increase the reverse speed for one of our cars. But I’m not sure how to as there’s not a specific variable that’s dedicated towards it unless I’m missing something (I probably am!).

Any help would be appreciated!

--Gear Ratios
	Tune.FinalDrive		= 3			-- Gearing determines top speed and wheel torque
	Tune.Ratios			= {				-- Higher ratio = more torque, Lower ratio = higher top speed
		--[[Reverse (CHANGE THIS)]]	1.20		,	-- Copy and paste a ratio to add a gear
		--[[Neutral]]	0			,	-- Ratios can also be deleted
		--[[ 1 ]]		4.5		,	-- Reverse, Neutral, and 1st gear are required
		--[[ 2 ]]		1.80		,
		--[[ 3 ]]		1.43		,
		--[[ 4 ]]		1.00		,
	}
	Tune.FDMult			= 1.5			-- Ratio multiplier (Change this value instead of FinalDrive if car is struggling with torque ; Default = 1)

You’ll be able to change the “speed” at which the car reverses by editing the gear ratio.

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.