wrenchCommented Config

This page lists and explains our configuration with comments.

commented_config.json
{
    "Debug": false,
    "DisableConsoleTitle": true,
    "UseGuardianAPI": false,
    "LicenseKey": "PUT_YOUR_LICENSE_HERE",
    "SteamAPIKey": "",
    "Mysql": {
        "MysqlHost": "localhost",
        "MysqlUser": "plugindb",
        "MysqlPass": "123",
        "MysqlDB": "ark_database",
        "MysqlPort": 3306,
        "MysqlTable_Bans": "arkguardian_bans",
        "MysqlTable_AAS": "arkguardian_aas",
        "MysqlTable_ADL": "arkguardian_adl",
        "EnableDiscordIntegration": false,
        "DiscordIntegrationMysql": {
            "MysqlTable_Discord": "put_your_table_discord",
            "Discord_IdKey": "put_your_table_discord_id_key",
            "Discord_SteamIdKey": "put_your_table_steam_id_key",
            "UseSecondDatabase": false,
            "MysqlHost": "localhost",
            "MysqlUser": "plugindb",
            "MysqlPass": "123",
            "MysqlDB": "ark_database2",
            "MysqlPort": 3306
        }
    },
    "BanSettings": {
        "UseIPBan": true,
        "UseGlobalBanSystem": false,
        "GlobalBanSystem": {
            "IncludeServerTags": [
                "ALL"
            ],
            "ExcludeServerTags": [
                "TEST"
            ],
            "RestrictJoin": false,
            "AlertAdmins": true,
            "AlertWebhook": "PUT_WEBHOOK_HERE",
            "IgnoreGroup": "IgnoreGlobal"
        },
        "Messages": {
            "GlobalBan": "You are globally banned from the protected server network",
            "LocalBan": "You are banned!\nFor: {}\nTime: {}\nId: {}"
        }
    },
    "SafeBanSettings": {
        "MinCycles": 1,
        "MaxCycles": 3
    },
    "Webhooks": {
        "BansWebhook": "PUT_YOUR_WEBHOOK_HERE",
        "DetectionWebhook": "PUT_YOUR_WEBHOOK_HERE",
        "BehavioralWebhook": "PUT_YOUR_WEBHOOK_HERE",
        "SystemWebhook": "PUT_YOUR_WEBHOOK_HERE",
        "RedirectWebhooks": {
            "AntiLongArms": "Disabled",
            "GuardianCrashFixes": "PUT_YOUR_WEBHOOK_HERE",
            "ExplorerNoteTracker": ""
        },
        "UseServerKey": false
    },
    "InGameMessages": {
        "NotifyBans": true,
        "NotifyDetection": true,
        "NotifyBehavioral": true
    },
    "ClassMapping": {
        "BuffTekGloves": "Blueprint'/Game/PrimalEarth/CoreBlueprints/Buffs/Buff_TekArmor_Gloves.Buff_TekArmor_Gloves'",
        "BuffTekShirt": "Blueprint'/Game/PrimalEarth/CoreBlueprints/Buffs/Buff_TekArmor_Shirt_Rework.Buff_TekArmor_Shirt_Rework'",
        "BuffTekSword": "Blueprint'/Game/PrimalEarth/CoreBlueprints/Buffs/Buff_TekArmor_Sword.Buff_TekArmor_Sword'"
    },
    "SpectatorList": [
        "PUT_YOUR_STEAMID1_HERE",
        "PUT_YOUR_STEAMID2_HERE"
    ],
    "Features": {}
}

Last updated