Modding Dead Air is an entertaining enterprise.

I am still working on modding the Stalker Dead Air mod. This one is a bit old now, but benefits from a lot of changes. I have changed the Rostok megaphone audio to the audio used in the Stalker beta builds. This is controlled in the configs\misc\sound\script_sound_l05_bar.ltx file, this controls a lot of the sounds … Read more

How to have practically no weapon sway or recoil in an Arma 3 mission.

The weapon sway in Arma 3 is out of control right now. With the 1.54 Nexus update, the weapon sway is like a drunken Irishman. But you can remove this. player setCustomAimCoef 0.1; player addMPEventhandler ["MPRespawn", {player setCustomAimCoef 0.1}];   player setUnitRecoilCoefficient 0.1; player addEventHandler ["Respawn", {player setUnitRecoilCoefficient 0.1}];   player enablestamina false player addEventHandler … Read more