aahz8 Posted November 17, 2013 Share Posted November 17, 2013 (edited) I made a simple set of scripts that change the mouse sensitivity based on what weapon you equip. This is the same method S.T.A.L.K.E.R. uses as "Weapon handling." The big weapons are slow and cumbersome so you aim more slowly vs. pistols, SMG ect which aim quickly. For longer range weapons it makes aiming much easier at long distances but also more difficult at short range. (Aka, no more sniper rifles in vaults.) Using SMGs or pistols is better inside. Here is the "slow" script that I used for the long range hunting rifle, sniper rifle, ect: scn HandelingSlow float sensitivity Begin OnEquip player set sensitivity to getNumericIniSetting "fMouseSensitivity:controls" set sensitivity to sensitivity * 0.35 SetNumericIniSetting "fMouseSensitivity:controls" sensitivity END Begin OnUnequip player set sensitivity to getNumericIniSetting "fMouseSensitivity:controls" set sensitivity to sensitivity / 0.35 SetNumericIniSetting "fMouseSensitivity:controls" sensitivity END I have added the scripts (Very slow, slow, moderate, low) to all the vanilla weapons (no DLCs) and shared the .esp if you want to try it out (Requires NVSE). https://drive.google.com/file/d/0B1MLwX6WDo8cUUJUS2pHdXhtX3M/edit?usp=sharing Try the anti-material weapon, it has the slowest handling. In the future, I would like this to be based on the weapons strength requirement and for the script to run every time the player equips any weapon (thus incorporating weapons that come from mods because currently I have to add the script to each weapon). If you have any ideas on how to do that please do it cause I don't! If anyone wants to edit and release this go ahead! I don't care if you give me credit, I just want to play the game :smile: Edited November 17, 2013 by aahz8 Link to comment Share on other sites More sharing options...
aahz8 Posted November 17, 2013 Author Share Posted November 17, 2013 Made a second esp for all the DLCs https://drive.google.com/file/d/0B1MLwX6WDo8cTnBVVXdUbDEzLXc/edit?usp=sharing So far I love this! You have to try it to see what I'm talking about. The guns just feel more realistic. Link to comment Share on other sites More sharing options...
aahz8 Posted November 17, 2013 Author Share Posted November 17, 2013 Oh and I put it right at the end of my load order but I have no idea if that's right. Link to comment Share on other sites More sharing options...
Recommended Posts