Newbie modding help xml fill types

Your forum for all discussions around Modding.
degenjim
Posts: 11
Joined: Tue Mar 12, 2019 12:26 am

Newbie modding help xml fill types

Post by degenjim »

Ok I am new to modding so please be kind
I am trying to modify an placeable xml (hayloft) to add grass and wood chips

I have made the following to moddifications to the xml file
<specs>
<capacity>250000</capacity>
<fillTypes>fillTypes=grass_windrow straw woodChips dryGrass_windrow </fillTypes>
</specs>
<storages>
<storage node="3|0" fillTypes="grass_windrow straw woodChips dryGrass_windrow" capacityPerFillType="250000" />
</storages>

however when i get in game i don't see what evere is the first entry in this case grass_windrow

i must be mising something simple.
cmdrbyron
Posts: 389
Joined: Fri Nov 17, 2017 4:49 pm

Re: Newbie modding help xml fill types

Post by cmdrbyron »

I think this might be the issue:

<fillTypes>fillTypes=grass_windrow straw woodChips dryGrass_windrow </fillTypes>

"fillTypes=grass_windrow" is not a recognized fill type, but that is what you are asking it to look for.

Try this instead:

<fillTypes>grass_windrow straw woodChips dryGrass_windrow</fillTypes>

edit emphasis and exlanation
degenjim
Posts: 11
Joined: Tue Mar 12, 2019 12:26 am

Re: Newbie modding help xml fill types

Post by degenjim »

That was it! Thank you I am an *$#%§*😬

It's all in the details
Post Reply