DownshiftBlipThrottle Upgrade

Borna

Hi all,

I have been trying to put autoblip as a upgrade on the car but the car doesn't blip or it doesnt do it as good when I do it directly in .hdv with DownshiftBlipThrottle= x.yz. Does anybody have idea why it doesn't work? Thx in advance

Upgrades.ini part

UpgradeType="Electronics"
{
Description="Electronics"
}
UpgradeLevel="Autoblip"
{
Description="Autoblip upgrade for 10kg weight ballast, 95% Blip under throttle"
HDV=[GENERAL]
HDV=Mass+=10.5
HDV=Inertia+=(12.6,16.11,4.02)
HDV=DownshiftBlipThrottle+=0.95
UpgradeLevel="No Autoblip"
{
Description="No Autoblip, No ballast"
HDV=[GENERAL]
HDV=Mass+=0
HDV=Inertia+=(0.0,0.0,0.0)
HDV=DownshiftBlipThrottle+=0.0
}
}
 
DownshiftBlipThrottle is in the DRIVELINE section, not GENERAL. Also, the structure itself is made with errors. That's why it doesn't work.

It should be like that (notice, there must be an empty line between sections and take a look at where I put opening and closing brackets for each section):

UpgradeType="Electronics"
{
Incremental=0
UpgradeLevel="Autoblip"
{
Description="Autoblip upgrade for 10kg weight ballast, 95% Blip under throttle"
HDV=[GENERAL]
HDV=Mass+=10.5
HDV=Inertia+=(12.6,16.11,4.02)
HDV=
HDV=[DRIVELINE]
HDV=DownshiftBlipThrottle=0.95
}
UpgradeLevel="No Autoblip"
{
Description="No Autoblip, No ballast"
HDV=[GENERAL]
HDV=Mass+=0
HDV=Inertia+=(0.0,0.0,0.0)
HDV=
HDV=[DRIVELINE]
HDV=DownshiftBlipThrottle=0.0
}
}

Also, you don't have to add value in this case (for DownshiftBlipThrottle), if you want to set definitive values.
With how I did that, you will have 0.95 or 0.0 of autoblip, regardless of what you have already set in HDV (which would matter, with your approach).
 
Last edited:

Back
Top