Hux Posted February 12, 2017 Report Share Posted February 12, 2017 I was wondering where the viewdistance is set on my server. I found some older threads that refer to the Config.Arma3Profile file but I don't see that anywhere. In my users folder there is Arma3Config.Arma3Profile. I don't see any viewdistance setting in this file. Can I just add: viewDistance=2000; ? Thank you. Link to comment Share on other sites More sharing options...
natoed Posted February 12, 2017 Report Share Posted February 12, 2017 that one is easy Hux depbo your epoch_server_settings.pbo in @epochhive\addons find epoch_server_settings\configs\security\security_checks.h notepad ++ from line 40 to line 73 note: any changes are not noticeable by the admins, so to check any new settings, remove yourself as admin to test. heres mine class forcedQuality { // Configs for forced viewdistances via AH matching A3 presets class Standard { viewDistance = 1400; // Standard Preset = 1600 viewDistanceObects = 1600; // Standard Preset = 1300 terrainGrid = 3.125; // Standard Preset = 25 }; class High { viewDistance = 2200; // High Preset = 2200 viewDistanceObects = 1800; // High Preset = 1800 terrainGrid = 10; // High Preset = 12.5 }; class VeryHigh { viewDistance = 3000; // Very High Preset = 3000 viewDistanceObects = 2600; // Very High Preset = 2600 terrainGrid = 10; // Very High Preset = 6.25 }; class Ultra { viewDistance = 3800; // Ultra Preset = 3800 viewDistanceObects = 3200; // Ultra Preset = 3200 terrainGrid = 10; // Ultra Preset = 3.125 }; class Custom { viewDistance = 2500; // High+ viewDistanceObects = 2000; // High+ terrainGrid = 10; // Default in MP: 10 }; mode = "Standard"; }; hope it helps cheers natoed Link to comment Share on other sites More sharing options...
Hux Posted February 12, 2017 Author Report Share Posted February 12, 2017 Thanks natoed. I've never looked in that file before...good to know. Link to comment Share on other sites More sharing options...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now