For the complete documentation index, see llms.txt. This page is also available as Markdown.

How to add player to Mechanic Admin

/mechanicadmin is gated the same way as other OTHERPLANET admin panels: ACE -> identifier whitelist → framework rank.

In server.cfg:

add_ace group.admin opmechanic.admin allow

Restart 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' },
    },
}

Command name defaults to mechanicadmin (config/AdminConfig.luaConfig.MechanicAdmin.command).

Last updated