<configs>
<set xpath="//item[@name='meleeToolTorch']/property[@name='Stacknumber']/@value">30000</set>
...
</configs>
<configs>
<set xpath="//item[@name='meleeToolTorch']/property[@name='Stacknumber']/@value">30000</set>
...
</configs>
<!-- better performance with a full path -->
<set xpath="/items/item[@name='meleeToolTorch']/property[@name='Stacknumber']/@value">30000</set>
<!-- tweak all items with no item-name selector -->
<set xpath="/items/item/property[@name='Stacknumber']/@value">30000</set>
<!-- limit it to starting with resource-->
<set xpath="/items/item[starts-with(@name,'resource')]/property[@name='Stacknumber']/@value">30000</set>
<!-- not very interesting to filter by name and get the name -->
<set xpath="/items/item[@name='meleeToolTorch']/@name">30000</set>
<!-- no item-name selector, will list all item names of course -->
<set xpath="/items/item/@name">30000</set>
<!-- list all 'resource...' items -->
<set xpath="/items/item[starts-with(@name,'resource')]/@name">30000</set>
Ah, yes. Thank you for explaining.Not all blocks have a Stacknumber property. I appended it in the cooking pot. Also i didn't want to touch other blocks cause some ppl use the wood frames for firewood (example) and a 30K stack is a pain... split, split, split![]()