Help! Cannot change server difficulty to Expert

Slimpy

New Member
Hi guys,

I am a first-time server admin, and everything seems to be working fine but for one annoying issue.

Under the server.cfg, I am able to change the difficulty to Veteran, but NOT to Expert (It defaults back to "Regular"). Is this intended? Is there any other way to disable crosshairs and 3rd person?

Thanks for your time :)
 
Go to cfgdayz/users/cfgdayz/cfgdayz.ArmAOAProfile.

This defines the settings for each difficulty. Find the difficulty you set in the server.cfg eg...
Code:
class Veteran
    {
        class Flags
        {
            3rdPersonView=1;
            armor=0;
            autoAim=0;
            autoGuideAT=0;
            autoSpot=0;
            cameraShake=1;
            clockIndicator=0;
            deathMessages=1;
            enemyTag=0;
            friendlyTag=0;
            hud=0;
            hudGroupInfo=0;
            hudPerm=0;
            hudWp=1;
            hudWpPerm=0;
            map=0;
            netStats=1;
            tracers=0;
            ultraAI=0;
            unlimitedSaves=0;
            vonId=0;
            weaponCursor=1;
        };
        skillFriendly=1;
        precisionFriendly=1;
        skillEnemy=0.89999998;
        precisionEnemy=0.75;
    };

Set weaponCursor=0; and 3rdPersonView=0;

Save and restart server.
 
An easier way is to change in the server.cfg:

find line
difficulty = "veteran";

and change to:

to difficulty = "Mercenary";
 
Back
Top