Skip to content

Custom game settings

Zezombye edited this page Oct 19, 2020 · 3 revisions

OverPy supports including custom game settings, using the settings keyword:

settings {
    "main": {
        "description": "Zez's Awesome Gamemode | 31ZG4M"
    },
    "gamemodes": {
        "skirmish": {
            "enabledMaps": [
                "horizonLunarColony"
            ]
        },
        "general": {
            "heroLimit": "off",
            "roleLimit": "off"
        }
    },
    "heroes": {
        "allTeams": {
            "junkrat": {
                "enableInfiniteUlt": true,
                "enableSpawningWithUlt": true
            }
        }
    }
}

You can also declare settings in a JSON file:

settings "settings.opy.json"

This will allow for autocompletion using the JSON schema.