Skip to content
Yi Zhou edited this page Apr 25, 2024 · 4 revisions

The config file will be generated in \plugins\YOUR_RUNDOWN\Custom\LocalProgression, with file name being ProgressionConfig.json

Config file structure

{
  "Configs": [
    {
      "RundownID": 0, // set to your rundown id
      "EnableNoBoosterUsedProgressionForRundown": false, // if set to true, for now, 
                                                         // configs in "Expeditions" will be ignored and NoBoosterClearance will be enabled
      "Expeditions": [
        {
          "Tier": 0,             // expedition indexer
          "ExpeditionIndex": 0,

          "EnableNoBoosterUsedProgression": false // enable NoBoosterClearance for this expedition
        }
      ]
    }
  ]
}

[Optional] Title text localization:

Add the following DB to your TextDataBlock and assign a unique persistentID to it. Please do not modify "name" of the DB.

{
    "SkipLocalization": false,
    "MachineTranslation": false,
    "English": "<color=orange>OMNIPOTENT</color>", 
    "Chinese_Simplified": {
        "Translation": "<color=orange>全能</color>",
        "ShouldTranslate": false
    },
    "Description": "",
    "CharacterMetaData": 5,
    "ExportVersion": 1,
    "ImportVersion": 1,
    "name": "InGame.ExpeditionSuccessPage.AllClearWithNoBoosterUsed",
    "internalEnabled": true,
    "persistentID": 0
}
Clone this wiki locally