setting maximum tyre pressures

Angus94

hi all, trying to set up an upgrades option for maximum tyre pressures, i have this so far, but it only works on the left rear wheel, what do i need to change so it will work on both rear wheels?

UpgradeType="TYRE PRESSURES"
{

UpgradeLevel="Rear Tyres 24.5 psi"
{
Description="Sets the MAXIMUM possible 'REAR' tyre pressures to 24.5 psi"
Price=0
HDV=[REARLEFT]
HDV=PressureRange=(10.0, 1.0, 160)
HDV=[REARRIGHT]
HDV=PressureRange=(10.0, 1.0, 160)
}


UpgradeLevel="Rear Tyres 14.1 psi"
{
Description="Sets the MAXIMUM possible 'REAR' tyre pressures to 14.1 psi"
Price=0
HDV=[REARLEFT]
HDV=PressureRange=(34.8, 6.9, 10)
HDV=[REARRIGHT]
HDV=PressureRange=(34.8, 6.9, 10)
}


cheers
 
i got it sorted..................

//------------------------------------ TYRE PRESSURES -----------------------------------------

UpgradeType="REAR TYRE PRESSURES"
{

UpgradeLevel="Maximum 24.5 psi"
{
Description="Sets the MAXIMUM possible rear tyre pressures to 24.5 psi"
Price=0
HDV=..................................< NEEDED THIS SEPARATOR
HDV=[REARLEFT]
HDV=PressureRange=(10.0, 1.0, 160)
HDV=..................................< NEEDED THIS SEPARATOR
HDV=[REARRIGHT]
HDV=PressureRange=(10.0, 1.0, 160)
HDV=..................................< NEEDED THIS SEPARATOR
}


UpgradeLevel="Maximum 14.1 psi"
{
Description="Sets the MAXIMUM possible rear tyre pressures to 14.1 psi"
Price=0
HDV=..................................< NEEDED THIS SEPARATOR
HDV=[REARLEFT]
HDV=PressureRange=(34.8, 6.9, 10)
HDV=..................................< NEEDED THIS SEPARATOR
HDV=[REARRIGHT]
HDV=PressureRange=(34.8, 6.9, 10)
HDV=..................................< NEEDED THIS SEPARATOR
}
 

Back
Top