Community Forum

New type of configuration in mod

Forum Overview >> Farming Simulator 17

CategoryFarming Simulator 17
Created08.11.2016 15:19


Maaslandmods Author (Maaslandmods) 08.11.2016 15:25
Hello,

I would like to know how to make your own configuration option in a mod.

I already know that there has to be a l10 in the moddesc.
Like this;

<l10n>
<text name="configuration_beacon">
<en>Beacon</en>
<de>Leuchtfeuer</de>
</text>
<l10n>

what must be included in the .xml? in relation to the text above?
Has there to be a extra specialization in the moddesc?

Maaslandmods Author (Maaslandmods) 14.11.2016 18:04
Nobody who is able to help me?

Andy Bundy (Bumsklops) 15.11.2016 02:12
$l10n_configuration_beacon must be in the vehicle.xml with your configuration

Maaslandmods Author (Maaslandmods) 15.11.2016 16:12
something like this?

<beaconConfigurations>
<beaconConfiguration name="$l10n_configuration_beacon" price="100" icon="beacon.png">
<objectChange node="0>10" visibilityActive="true" visibilityInactive="false"/>
</beaconConfiguration>
</beaconConfigurations>

I dont see the configuration option is the shop

Sam Northey (Unknown) 16.11.2016 19:11
I would also like to do something like this, add multiple 'designConfigurations' and even choose extra lights etc from the shop menu when you buy a vehicle. Is this possible? I don't know how the game would know if you have added an extra light or not when you turn the lights on.

Maaslandmods Author (Maaslandmods) 24.11.2016 16:12
maybe Emil Drefers is able to help us?


Maaslandmods Author (Maaslandmods) 05.12.2016 20:28
Where can we get support?

Diman Prop (Unknown) 08.12.2016 00:23
you must

<l10n>
<text name="configuration_beacon">
<en>Beacon</en>
<de>Leuchtfeuer</de>
</text>
<text name="configuration_color">
<en>Beacon</en>
<de>Leuchtfeuer</de>
</text>
<l10n>

in xml

<designConfiguration name="$l10n_configuration_beacon" price="500" icon="$dataS2/menu/hud/configurations/config_edition.png">
<objectChange node="0>12|4" visibilityActive="true" visibilityInactive="false"/>
</designConfiguration>

and if you want to change color

<designColorConfigurations name="$l10n_сonfiguration_color" useDefaultColors="true" price="200" defaultColorIndex="1" icon="$dataS2/menu/hud/configurations/config_color.png">
<colorNode node="0>3|0|12" recursive="true"/>

</designColorConfigurations>





Diman Prop (Unknown) 08.12.2016 02:06
and if you want to create new configuration you must create LUA script i think so

Sam Northey (Unknown) 08.12.2016 09:38
Is there a list available with all the current configuration types?

Maaslandmods Author (Maaslandmods) 09.12.2016 16:24
@Sam_N
wheelConfigurations
differentialConfigurations
ackermannSteeringConfigurations
motorConfigurations

This is what i have found so far.

Maaslandmods Author (Maaslandmods) 15.12.2016 17:25
Does anybody know how to create a configuration lua?


Note: Log in to post. Create a new account here.