Perfect, that is what I was missing in this case. However, some blocks have drop event="destroy", some have drop event="disassemble", and some have the drop event="Harvest" any ideas how I would point out those paths?
Okay after you pointed out my very obvious retardation I tried this:
<set xpath="/blocks/block[@name='woodLogPillar100']/drop_event[@name='Harvest']@count">60000</set>
I also tried
<set xpath="/blocks/block[@name='woodLogPillar100']/drop[@event='Harvest']@count">60000</set>
Still no dice. I've tried variations of dropEvent, drop, drop_Event, and drop event but it still errors out. I would like to make sure that my change ONLY affects the <drop event="Harvest" name="resourceWood" count="???"> area...
The code you provided gives me a syntax error
Okay after you pointed out my very obvious retardation I tried this:
<set xpath="/blocks/block[@name='woodLogPillar100']/drop_event[@name='Harvest']@count">60000</set>
I also tried
<set xpath="/blocks/block[@name='woodLogPillar100']/drop[@event='Harvest']@count">60000</set>
Still no dice. I've tried variations of dropEvent, drop, drop_Event, and drop event but it still errors out. I would like to make sure that my change ONLY affects the <drop event="Harvest" name="resourceWood" count="???"> area...
Alright, quick question for you... I'm trying to adjust a particular block in the blocks.xml. The line I have is
<drop event="Harvest" name="resourceWood" count="500" tag="oreWoodHarvest"/>
I'm attempting to change the "500" part of the above code. What I attempted was:
<set xpath="/blocks/block[@name='woodLogPillar100']/property[@name='drop']@count">600</set>
I know the code is wrong but I can't find any information on how to point to the "count" field inside the (drop event="Harvest") line?
I want to change an existing harvest amount to be different in