Jump to content

Recommended Posts

G'day i was just wondering if anyone knew or had the script to disable Aim Down Sights for player/playable units?

Thankyou

Share this post


Link to post
Share on other sites

If you make an init.sqf in your mission folder and add this into it:

 

addMissionEventHandler ["Draw3D", {call {
if (cameraOn == player ) exitWith {player switchCamera "Internal"};
if (vehicle player != player) exitWith {player switchCamera "gunner"};
}}];

Only thing is, it will force first person to and disables the aim down sights completely. (only tested in SP)

 

 

  • Like 1

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

×