

It’s finally here!
More Design Config has officially arrived in Farming Simulator 25 as of today!
I hope you have lots of fun with More Design Config in FS25!
INSTALLATION:
Installation in a vehicle mod
First, copy the file.
MoreDesignConfigurations.lua
from the scripts folder to the scripts folder of your vehicle mod.
Next, enter the following into the modDesc.xml file of your vehicle mod:
code
If your mod already has an <extraSourceFiles> section, you only need to add the <sourceFile> line there.
New configuration in the vehicle XML
After that, you can, for example, create a configuration in your vehicle’s XML:
code
<design9Configurations title=”Front Design”>
<design9Configuration name=”Standard” price=”0″ saveId=”standard”>
<objectChange
node=”frontStandard”
visibilityActive=”true”
visibilityInactive=”false”/>
<objectChange
node=”frontCustom”
visibilityActive=”false”
visibilityInactive=”true”/>
</design9Configuration>
<design9Configuration name=”Custom” price=”1500″ saveId=”custom”>
<objectChange
node=”frontStandard”
visibilityActive=”false”
visibilityInactive=”true”/>
<objectChange
node=”frontCustom”
visibilityActive=”true”
visibilityInactive=”false”/>
</design9Configuration>
</design9Configurations>
Show less
The crucial part here is the node information provided:
code
node=”frontStandard”
node=”frontCustom”
The included file contains only examples. You need to enter your vehicle’s actual i3d mappings there.
