I am looking at the syntax ... had a similar issue with a mod i did ..Ok so I still can't get it to work, I guess I'm pretty dense lol
I hate to be the guy that asks for a hand holding, but I think at this point I need someone to solve it for me to help me to understand. I tried both append for melttime and also set for weight, neither seemed to work
<configs>
<set xpath="/items/item[@name=resourceRockSmall]/property[@name=Weight]/@value">1</set>
<append xpath="/items/item[@name=resourceRockSmall]/property[@name=MeltTimePerUnit]/@value">0.1</append>
</configs>
I ran this and it loads with no errors ...Set the time you want, 0.25 is the default time. Everything extends from unit_iron including stone
Code:<set xpath="/items/item[@name='unit_iron']/property[@name='MeltTimePerUnit']/@value">0.25</set>
<configs>
<!-- Everything extends from unit_iron including stone -->
<set xpath="/items/item[@name='unit_iron']/property[@name='MeltTimePerUnit']/@value">0.1</set>
<append xpath="/items/item[@name='resourceRockSmall']">
<property name='Weight' value="1"/>
</append>
</configs>
<append xpath="/items/item/[@name='unit_stone']">
<property name="MeltTimePerUnit" value="0.25"/> <!-- default melt time -->
</append>
<append xpath="/items/item[@name='resourceRockSmall']">
<property name="MeltTimePerUnit" value="0.25"/> <!-- default melt time -->
</append>
On a steep learning curve myselfI am still learning xpath myself but I think your append is wrong.