darchon Posted November 23, 2019 Share Posted November 23, 2019 this used to work in A17: <set xpath="/items/item[@name='meleeToolStoneAxe']/effect_group/passive_effect[@name='DamageModifier' and @tags='wood']/@value">50</set> but doesnt anymore in A18. anyone have any ideas how to make this work? Link to comment Share on other sites More sharing options...
Weyrling Posted November 24, 2019 Share Posted November 24, 2019 meleeToolStoneAxe doesn't have a 'wood' DamageModifier anymore so the xpath doesn't find anything to change. You could add one though: <configs> <append xpath="/items/item[@name='meleeToolStoneAxe']/effect_group"> <passive_effect name="DamageModifier" operation="perc_add" value="50" tags="wood"/> </append> </configs> Note that operation 'perc_add' with a value of 50 is a 5000% increase, which may be excessive. Link to comment Share on other sites More sharing options...
darchon Posted December 1, 2019 Author Share Posted December 1, 2019 awesome thanks i was also trying to figure out how to append it but couldnt get it to work. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.