Jump to content
MustangMorris

Ai sniper accuracy 🤣

Recommended Posts

Hey guys new to arma 3 and pc gaming just getting all setup and trying to get used to the game, the ai seem to be snipers and pick me off as soon as a bullet fires, I've changed the settings down to lowest skill and accuracy values but they still hit me with one shot and I'm dead. 

I've read another post saying to alter the read me file for the profile however that topic describes 4 seperate values where as mine show only the 2 which are in the options and they are also showing the lowest values already. 

Any help with this would be great thanks? 

Share this post


Link to post
Share on other sites

Hello MustangMorris,

Welcome to BI forums, Arma and PC!

 

What are you playing when your the AI is very accurate?

 

Take a look at my AI compilation list seen here,

https://forums.bohemia.net/forums/topic/165560-ai-compilation-list-of-addonsmodsscripts-threads-for-arma3/

there is a category there titled AI Accuracy, Skill, & Spotting/distance

See if anything in there can help you.

 

Theres also AI mods if your interested in mods

https://forums.bohemia.net/forums/topic/237139-all-arma-3-steam-workshop-ai-mods-compilation-list/

 

If your building your own missions put this in an init.sqf script in your mission folder.

Just start up a notepad doc, copy the code, paste it, then save the notepad doc as init.sqf, then put the script in your mission folder.

If not then maybe save it until you do or want to build a mission for yourself.

[] spawn 
	{
	while {true} do
		{
		sleep 10;

			{
			_x setSkill ["aimingspeed", 0.1];
			_x setSkill ["spotdistance", 0.2];
			_x setSkill ["aimingaccuracy", 0.2];
			_x setSkill ["aimingshake", 0.1];
			_x setSkill ["spottime", 0.1];
			_x setSkill ["commanding", 0.2];
			_x setSkill ["general", 0.5];
			} 
		forEach allUnits;
		}
	};

Also take a look at my post here about AI accuracy:

https://forums.bohemia.net/forums/topic/238485-do-the-ai-npcs-have-xray-vision/?do=findComment&comment=3458992

Share this post


Link to post
Share on other sites

Cheers mate, I'm literally just starting off on the campaign mode and weren't expecting it to be so difficult that early on 😂. I will have a check over the posts and see if It will help. Thank alot 👍

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

×