Removing Pause Menu user data
If you'd like to remove for example accounts from pause menu you can do the following. Find /shared/ui_cfg/config_pausemenu.lua and change data:
Config.PauseMenu.UserData = {
['mugshot'] = {
use = true,
},
['user_firstname_and_lastname'] = {
use = true,
},
['job_list'] = {
use = true,
},
['wallets_list'] = {
use = false, -- setting that value to false will remove the accounts from appearing in top left.
},
}
Last updated