How to add player to Mechanic Admin
/mechanicadmin is gated the same way as other OTHERPLANET admin panels: ACE -> identifier whitelist → framework rank.
Option 1 - ACE (recommended)
In server.cfg:
add_ace group.admin opmechanic.admin allowRestart server, then run /mechanicadmin in-game.
Option 2 - Identifier whitelist
Edit config/MainConfig.lua:
Config.AdminPanelPlayers = {
['license:xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'] = true,
-- ['discord:000000000000000000'] = true,
}Use license / discord / character / citizenid identifiers from txAdmin.
Option 3 - Framework rank
Config.RanksPermissions = {
AdminPanelPlayers = {
['esx'] = { 'superadmin', 'admin', 'mod' },
['qbcore'] = { 'god', 'admin' },
['qbox'] = { 'god', 'admin' },
},
}Last updated