Disabling elements

About

This document is made especially for people that would like to disable for example wallets to appear from the displayers content.

Disabling element

In order to disable some part of the displayers, headover to the /shared/ui_cfg/config_displayer.lua and find this object:

Config.Displayer.Visible = {
    ['id'] = true,
    ['jobs'] = true,
    ['wallets'] = true,
    ['addon'] = true,
}

Here you can decide whether to disable something by setting instead of true - false

Disabling whole displayers

To disable whole displayers headover to the /shared/ui_cfg/config_displayer.lua and set:

Config.Displayer.Use = false

Last updated