globalvehdata.lua

The globalvehdata.lua is a file that stores user configuration for specific vehicle and also hold precalculated data.

Unlike other files, you don't need to create a profile here, as it will be automatically generated. You can generate your own globalvehdata.lua by following this tutorial:

The "chaserfirststartup" command

An example of a globalvehdata.lua key is:

globalvehdata = {
	["elegy"] = {
		["usemotionbluronhoodcam"] = true,
		["hashilorangemode"] = false,
		["hoody"] = 0.9,
		["engbaysize"] = 2.135,
		["nitroustimer"] = 5,
		["hoodz"] = 0.51967906951904,
		["model"] = "elegy",
		["hasdct"] = false,
		["cachedwheelradius"] = 0.41626,
		["thiscarhasnitrous"] = true,
		["safetopspeed"] = 197.33335367839,
		["hoodzoffset"] = 0.1,
		["hoodyoffset"] = 0,
		["interpolationspeedoffset"] = 0.001,
		["maincamzoffset"] = 0,
	},
}

usemotionbluronhoodcam:

User config, to enable or disable motion blur when using C.H.A.S.E.R hood camera.

hashilorangemode:

User config, to enable or disable the high/low range differential on the vehicle.

hoody:

Calculated value for the hood y position offset.

engbaysize:

Calculated value for the enginebay size.

nitroustimer:

User config, to set the nitrous capacity (in seconds) on the vehicle, if it has nitrous by default.

hoodz:

Calculated value for the hood z position offset.

model:

Model name.

hasdct:

User config, to enable or disable the DCT audio effect when shifting on sequential.

cachedwheelradius:

Calculated value for the wheel radius.

thiscarhasnitrous:

User config, to enable or disable the nitrous by default on this vehicle.

safetopspeed:

Calculated value for the network sync of gearshifts.

hoodzoffset:

User config, to set a offset for the z axis on the C.H.A.S.E.R hood camera.

hoodyoffset:

User config, to set a offset for the y axis on the C.H.A.S.E.R hood camera.

interpolationspeedoffset:

User config, to set a offset for the C.H.A.S.E.R chase camera interpolation speed

maincamzoffset:

User config, to set a offset for the C.H.A.S.E.R chase z height

Last updated