To disable interface component, you can go to the each file in ui_cfg. This is the main handler for visibility & usage of components.
If you'd like to disable configuration, make sure to use this instead!
We will do example with progressbar. Visit /shared/ui_cfg/config_progressbar.lua and find following code:
/shared/ui_cfg/config_progressbar.lua
Config.ProgressBar.Use = true
If you want to disable it, just set instead of true false so it looks like this:
Config.ProgressBar.Use = false
Last updated 8 months ago