More Design Config is available for Farming Simulator 25.
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"></design9configurations> <design9configuration name="Standard" price="0" saveid="standard"> <objectchange node="frontStandard" visibilityActive="true" visibilityInactive="false"/></objectchange> </design9configuration> <objectchange node="frontCustom" visibilityActive="false" visibilityInactive="true"/> </objectchange> <design9configuration name="Custom" price="1500" saveid="custom"> <objectchange node="frontStandard" visibilityActive="false" visibilityInactive="true"/></objectchange> </design9configuration> <objectchange node="frontCustom" visibilityActive="true" visibilityInactive="false"/> </objectchange>
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.






