bladewalker27 Posted August 12, 2020 Share Posted August 12, 2020 I like to mod out the augers recoil but in Alpha 19 Exp changing the values that worked in Alpha 18 no longer removes the recoil. <passive_effect name="SpreadDegreesVertical" operation="base_set" value=".5" tags="perkMiner69r"/> <passive_effect name="SpreadDegreesHorizontal" operation="base_set" value=".5" tags="perkMiner69r"/> <passive_effect name="KickDegreesVerticalMin" operation="base_set" value="-.35" tags="perkMiner69r"/> <passive_effect name="KickDegreesVerticalMax" operation="base_set" value=".35" tags="perkMiner69r"/> <passive_effect name="KickDegreesHorizontalMin" operation="base_set" value="-.35" tags="perkMiner69r"/> <passive_effect name="KickDegreesHorizontalMax" operation="base_set" value=".35" tags="perkMiner69r"/> I used to be able to change the values .5 and .35 to 0 and that would remove the recoil but that no longer works. Does anyone know if it's still possible to remove the recoil? Link to comment Share on other sites More sharing options...
n2n1 Posted August 13, 2020 Share Posted August 13, 2020 something like this should work (remove the influence of perks): <passive_effect name="KickDegreesVerticalMin" operation="base_set" value="0"/> <passive_effect name="KickDegreesVerticalMax" operation="base_set" value="0"/> <passive_effect name="KickDegreesHorizontalMin" operation="base_set" value="0"/> <passive_effect name="KickDegreesHorizontalMax" operation="base_set" value="0"/> it seems to be simple... Link to comment Share on other sites More sharing options...
bladewalker27 Posted August 16, 2020 Author Share Posted August 16, 2020 Yes it seems simple but I just tried doing that again and it still doesn't work but ty for trying. Link to comment Share on other sites More sharing options...
Buggi Posted August 17, 2020 Share Posted August 17, 2020 Works for me in my mod... <set xpath="/items/item[@name='meleeToolPickT3Auger']/effect_group[@name='meleeToolPickT3Auger']/passive_effect[@name='KickDegreesVerticalMin']/@value">0</set> <set xpath="/items/item[@name='meleeToolPickT3Auger']/effect_group[@name='meleeToolPickT3Auger']/passive_effect[@name='KickDegreesVerticalMax']/@value">0</set> <set xpath="/items/item[@name='meleeToolPickT3Auger']/effect_group[@name='meleeToolPickT3Auger']/passive_effect[@name='KickDegreesHorizontalMin']/@value">0</set> <set xpath="/items/item[@name='meleeToolPickT3Auger']/effect_group[@name='meleeToolPickT3Auger']/passive_effect[@name='KickDegreesHorizontalMax']/@value">0</set> Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.