Escapists conf - mokdevel/ArmaReforger_snippets GitHub Wiki

Settings

When enabled, handovers admin menu to the logged in admin. Bypasses other mission header settings:
	"m_bUseSetupMenu": 1
	
Occupying faction key. Players will belong to opposite faction. Supported values: US, USSR, RANDOM, 
	UK, NATO - needs ESCAPISTS BRITISH FORCES Mod
	"m_sOccupyingFaction": "USSR"

Player faction. Should be unnecessary as players should automatically belong to opposite faction. Supported values: US, USSR, RANDOM, 
	"m_sPlayerFaction": "US"

Enemy AI skill. Cylon and None values are not supported.	
	"m_eAiSkill": "REGULAR"
	"m_eAiSkill": 50
	enum EAISkill
	{
		NONE,
		ROOKIE    = 20,
		REGULAR    = 50,
		VETERAN    = 70,
		EXPERT     = 80,
		CYLON      = 100
	}

Player character survivability:
	"m_eHealthType": "SlightlyIncreased"
	"m_eHealthType": 2
	enum ESCT_EHealthType
	{
		Default = 0,
		SlightlyIncreased = 2,
		ModeratelyIncreased = 4
	}

Random starting time. When enabled, randomizes start time. Bypasses m_iStartHours if enabled.
    "m_bRandomStartingTime": 0

Starting time of day (hours):
    "m_iStartHours": "0 23 1"

General time acceleration. (I guess it's "day night 1.0")
	"m_fTimeAcceleration": "0.1 12.0 1.0"

Starting weather. Supported values: Clear, Cloudy, Overcast, Rainy.
	"m_sStartingWeather": "value"

Start type. Supported values: Hideout, Prison, Random.
    "m_eStartType": 0
    enum ESCT_EStartType 
    {
        Random = 0,
        Hideout = 2,
        Prison = 4,
    }    

How many locations will be disabled in the particular run:
	"m_fDisabledLocationsRatio": "0.1 1 0.05"

Patrol spawn chance:
	"m_fPatrolSpawnChance": "0.1 1 0.05"
    
Civilian Presence: 
	"m_iCivilianPresence": "0 10 1"

Example server conf

{
    "bindAddress": "192.168.1.40",
    "bindPort": 2001,
    "publicAddress": "xxx.xxx.xxx.xxx",
    "publicPort": 2001,
    "game": {
        "name": "Darc - Escapists - Arland",
        "password": "passu",
        "scenarioId": "{B76E6CFDF056031F}Missions/Escapists_Arland.conf",
		"maxPlayers": 10,
        "password": "password",
		"passwordAdmin": "adminpassword",
        "visible": true,
        "supportedPlatforms": [
            "PLATFORM_PC",
            "PLATFORM_XBL"
        ],
        "gameProperties": {
            "serverMaxViewDistance": 5000,
            "battlEye": false,
            "fastValidation": true,
            "serverMaxViewDistance": 2500,
            "serverMinGrassDistance": 50,
            "networkViewDistance": 1000,
            "disableThirdPerson": true,
			"missionHeader": {
				"m_sOccupyingFaction": "USSR",
				"m_fTimeAcceleration": 8,
				"m_fPatrolSpawnChance": 0.7,
				"m_bUseSetupMenu": 0 
			}
        },
        "mods": [
        	{
			"modId": "60FD2467B664E0F8",
			"name": "ESCAPISTS - DEV"
			},
			{
			"modId": "60C4CE4888FF4621",
			"name": "ACE CORE"
			},
			{
			"modId": "606C369BAC3F6CC3",
			"name": "ACE FINGER"
			},
			{
			"modId": "611CB1D409001EB0",
			"name": "ACE MAGAZINE REPACK"
			},
			{
			"modId": "597C0CF3A7AA8A99",
			"name": "BETTERSOUNDS 3.6"
			},
			{
			"modId": "59651354B2904BA6",
			"name": "BETTERHITSEFFECTS 3.0 ALPHA"
			},
			{
			"modId": "59673B6FBB95459F",
			"name": "BETTERTRACERS 2.0"
			},
			{
			"modId": "59674C21AA886D57",
			"name": "BETTERMUZZLEFLASHES 2.0"
			}			
        ]
    }
}
⚠️ **GitHub.com Fallback** ⚠️