Arrow-Xbow ammo Conversation Mod - Allows you to swap bolts and arrows at will.
Hi,
I tried to uncomment the lines in the recipes.xml to allow for converting the fire and exploding variants (and had to move the </append> and add a missing </recipe> tags), but when the server boots up, it complains about existing recipe already exists for resourceTarrow and ammoArrowBoltExploding. Or were these lines commented out because they aren't working?
Does anyone have any guidance on how I can resolve this? I do have a few other mods that might be affecting this, specifically "PhD Disassemble It 3.6 (A20)" allows disassembling ammo, including the arrows/bolts.
here is my resulting recipes.xml after I uncommented and added/moved a couple tags.
<configs>
<!-- Add in conversion recipes for arrows and bolts -->
<append xpath="/recipes">
<recipe name="ammoCrossbowBoltSteelAP" count="1">
<ingredient name="ammoArrowSteelAP" count="1"/>
</recipe>
<recipe name="ammoArrowStone" count="1">
<ingredient name="ammoCrossbowBoltStone" count="1"/>
</recipe>
<recipe name="ammoArrowIron" count="1">
<ingredient name="ammoCrossbowBoltIron" count="1"/>
</recipe>
<recipe name="ammoArrowSteelAP" count="1">
<ingredient name="ammoCrossbowBoltSteelAP" count="1"/>
</recipe>
<recipe name="ammoCrossbowBoltStone" count="1">
<ingredient name="ammoArrowStone" count="1"/>
</recipe>
<recipe name="ammoCrossbowBoltIron" count="1">
<ingredient name="ammoArrowIron" count="1"/>
</recipe>
<recipe name="ammoCrossbowBoltFlaming" count="1" craft_area="workbench" tags="learnable">
<ingredient name="ammoArrowSteelAP" count="1" />
<ingredient name="resourceGunPowder" count="2" />
<ingredient name="resourceCloth" count="1" />
<ingredient name="resourceTallow" count="1" />
</recipe>
<recipe name="ammoArrowExploding" count="1" craft_area="workbench" tags="learnable">
<ingredient name="resourceArrowHeadSteelAP" count="1" />
<ingredient name="resourceGunPowder" count="8" />
<ingredient name="resourceDuctTape" count="1" />
<ingredient name="resourceWood" count="1" />
<ingredient name="resourceFeather" count="1" />
</recipe>
<recipe name="ammoCrossbowBoltFlaming" count="1" tags="learnable">
<ingredient name="ammoArrowFlaming" count="1"/>
</recipe>
<recipe name="ammoArrowExploding" count="1" tags="learnable">
<ingredient name="ammoCrossbowBoltExploding" count="1"/>
</recipe>
<recipe name="ammoArrowFlaming" count="1" tags="learnable">
<ingredient name="ammoCrossbowBoltFlaming" count="1"/>
</recipe>
<recipe name="ammoCrossbowBoltExploding" count="1" tags="learnable">
<ingredient name="ammoArrowBoltExploding" count="1"/>
</recipe>
</append>
</configs>
Thanks!