Skip to content

Configuration options for Better Advancements

way2muchnoise edited this page Jul 30, 2026 · 5 revisions

This pages provides an overview of the options available in Better Advancements.

The location of the config file depends on your mod loader:

  • NeoForge - config/betteradvancements-client.toml
  • Fabric - config/betteradvancements.json

Overview of config options

Config value Type Default Description
defaultUncompletedIconColor Color #FFFFFF Sets the default icon color for advancements that have not been completed.
defaultUncompletedTitleColor Color #0489C1 Sets the default title/text color for advancements that have not been completed.
defaultCompletedIconColor Color #DBA213 Sets the default icon color for completed advancements.
defaultCompletedTitleColor Color #DBA213 Sets the default title/text color for completed advancements.
doAdvancementsBackgroundFade Boolean true Enables or disables the background fade effect in the advancements screen.
showDebugCoordinates Boolean false Shows debug coordinate information in the advancements screen, useful for layout/debugging.
orderTabsAlphabetically Boolean false Sorts advancement tabs alphabetically instead of using their normal order.
uiScaling Integer slider 100 Controls the scaling percentage of the advancements UI. Values below 50% may produce unusual visual results.
defaultZoom Float 1.0 Sets the default zoom level for the advancements screen. Zoom changes in steps of 0.1 and is limited between 0.4 and 1.6.
criteriaDetail Dropdown DEFAULT Controls how much criteria/progress detail is shown for advancements. Available options come are OFF (Vanilla), DEFAULT (lists only the achieved criteria), SPOILER (lists only the not achieved critera), or ALL (lists both achieved and not achieved critera).
criteriaDetailRequiresShift Boolean false If enabled, criteria details are only shown while holding Shift.
colorWholeCriteriaText Boolean false If enabled, criteria details are colored red or green depending on completion. Default it is only the x or v mark that is colored
criteriaRotationSpeed Integer slider 3 Controls speed at which pages of critera rotate, default is 3. Accepts values between 1 and 10
addInventoryButton Boolean false Adds an inventory button to the advancements screen.
defaultDrawDirectLines Boolean false Draws direct connection lines between advancements by default.
defaultHideLines Boolean false Hides advancement connection lines by default.
defaultCompletedLineColor Color #FFFFFF Sets the default color for connection lines to completed advancements.
defaultUncompletedLineColor Color #FFFFFF Sets the default color for connection lines to uncompleted advancements.
onlyUseAboveAdvancementTabs Boolean false Forces advancement tabs to only use the top/above tab layout instead of other tab positions.
keepAdvancementsTitle Boolean true Keeps the default “Advancements” title visible on the advancements screen.

Default config file contents

{
  "defaultUncompletedIconColor": "#FFFFFF",
  "defaultUncompletedTitleColor": "#0489C1",
  "defaultCompletedIconColor": "#DBA213",
  "defaultCompletedTitleColor": "#DBA213",
  "doAdvancementsBackgroundFade": true,
  "showDebugCoordinates": false,
  "orderTabsAlphabetically": false,
  "uiScaling": 100,
  "defaultZoom": 1.0,
  "criteriaDetail": "Default",
  "criteriaDetailRequiresShift": false,
  "colorWholeCriteriaText": false,
  "criteriaRotationSpeed": 3,
  "addInventoryButton": false,
  "defaultDrawDirectLines": false,
  "defaultHideLines": false,
  "defaultCompletedLineColor": "#FFFFFF",
  "defaultUncompletedLineColor": "#FFFFFF",
  "onlyUseAboveAdvancementTabs": false
}

Clone this wiki locally