• If you have a mod, tool or prefab, please use the Resources section. Click Mods at the top of the forums.

Remove\Disable auger screen shaking\recoil

WorstPilot

New member
Hi ladies and gentlemen! I'm with a friend, trying to figure out if it's possible to remove the recoil and screen shake when using auger, the problem is that as far as I understand, it seems in alpha 18 the problem could be solved by changing the values of the strings to zero
 

<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"/>


in items.xml but now apparently it doesn't work, I checked. Please help me understand what has changed and how to achieve my goal?

 
just add the <!-- in the front and the --> at the end of the last sentence for blocking that section out... if it has no effect, than you can remove it again.

Code:
[COLOR=#e8bd89]<!--
<passive_effect[/COLOR][COLOR=#ebe7e3] [/COLOR][COLOR=#df897a]name[/COLOR][COLOR=#d9b180]=[/COLOR][COLOR=#7ea9c4]"KickDegreesVerticalMin"[/COLOR][COLOR=#ebe7e3] [/COLOR][COLOR=#df897a]operation[/COLOR][COLOR=#d9b180]=[/COLOR][COLOR=#7ea9c4]"base_set"[/COLOR][COLOR=#ebe7e3] [/COLOR][COLOR=#df897a]value[/COLOR][COLOR=#d9b180]=[/COLOR][COLOR=#7ea9c4]"-.35"[/COLOR][COLOR=#ebe7e3] [/COLOR][COLOR=#df897a]tags[/COLOR][COLOR=#d9b180]=[/COLOR][COLOR=#7ea9c4]"perkMiner69r"[/COLOR][COLOR=#e8bd89]/>[/COLOR][COLOR=#ebe7e3]
[/COLOR][COLOR=#e8bd89]<passive_effect[/COLOR][COLOR=#ebe7e3] [/COLOR][COLOR=#df897a]name[/COLOR][COLOR=#d9b180]=[/COLOR][COLOR=#7ea9c4]"KickDegreesVerticalMax"[/COLOR][COLOR=#ebe7e3] [/COLOR][COLOR=#df897a]operation[/COLOR][COLOR=#d9b180]=[/COLOR][COLOR=#7ea9c4]"base_set"[/COLOR][COLOR=#ebe7e3] [/COLOR][COLOR=#df897a]value[/COLOR][COLOR=#d9b180]=[/COLOR][COLOR=#7ea9c4]".35"[/COLOR][COLOR=#ebe7e3] [/COLOR][COLOR=#df897a]tags[/COLOR][COLOR=#d9b180]=[/COLOR][COLOR=#7ea9c4]"perkMiner69r"[/COLOR][COLOR=#e8bd89]/>[/COLOR][COLOR=#ebe7e3]
[/COLOR][COLOR=#e8bd89]<passive_effect[/COLOR][COLOR=#ebe7e3] [/COLOR][COLOR=#df897a]name[/COLOR][COLOR=#d9b180]=[/COLOR][COLOR=#7ea9c4]"KickDegreesHorizontalMin"[/COLOR][COLOR=#ebe7e3] [/COLOR][COLOR=#df897a]operation[/COLOR][COLOR=#d9b180]=[/COLOR][COLOR=#7ea9c4]"base_set"[/COLOR][COLOR=#ebe7e3] [/COLOR][COLOR=#df897a]value[/COLOR][COLOR=#d9b180]=[/COLOR][COLOR=#7ea9c4]"-.35"[/COLOR][COLOR=#ebe7e3] [/COLOR][COLOR=#df897a]tags[/COLOR][COLOR=#d9b180]=[/COLOR][COLOR=#7ea9c4]"perkMiner69r"[/COLOR][COLOR=#e8bd89]/>[/COLOR][COLOR=#ebe7e3]
[/COLOR][COLOR=#e8bd89]<passive_effect[/COLOR][COLOR=#ebe7e3] [/COLOR][COLOR=#df897a]name[/COLOR][COLOR=#d9b180]=[/COLOR][COLOR=#7ea9c4]"KickDegreesHorizontalMax"[/COLOR][COLOR=#ebe7e3] [/COLOR][COLOR=#df897a]operation[/COLOR][COLOR=#d9b180]=[/COLOR][COLOR=#7ea9c4]"base_set"[/COLOR][COLOR=#ebe7e3] [/COLOR][COLOR=#df897a]value[/COLOR][COLOR=#d9b180]=[/COLOR][COLOR=#7ea9c4]".35"[/COLOR][COLOR=#ebe7e3] [/COLOR][COLOR=#df897a]tags[/COLOR][COLOR=#d9b180]=[/COLOR][COLOR=#7ea9c4]"perkMiner69r"[/COLOR][COLOR=#e8bd89]/>    -->[/COLOR]
 
just add the <!-- in the front and the --> at the end of the last sentence for blocking that section out... if it has no effect, than you can remove it again.

<!--
<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"/> -->

Commenting it out, or even, removing these section, have no effect. However, if i set values to really big numbers, let's say 5000 screen reposition was from 0 to 5000 per use. So i can conclude this values is doing something, but i can't make the game do not use them at all. Maybe there is some default values somewhere, and game uses them regardless of whether there are these values in items.xml or not? Seems like it) But i really want to kill this screen shaking effect (

 
Back
Top