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

Admin Panel

The entire script is managed in-game from a single admin panel. There are no other commands; one command opens it, and everything else happens in the UI.

Opening the panel

Command
Default
Access
Opens

/bm_admin

configurable via cfg.admin.command

admins only

The admin panel

Set cfg.admin.command = false to remove the command entirely.

Who is an admin?

A player is treated as an admin if either is true:

  1. They have FiveM's built-in command ace (the server console, and usually group.admin), or

  2. Their identifier is listed in cfg.admin.allowedIdentifiers.

cfg.admin = {
    command = 'bm_admin',
    allowedIdentifiers = {
        ['license:xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'] = true,
        ['license:yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy'] = true,
    },
}

You can find a player's license: identifier with /bm_admin once they're connected — or from txAdmin / your server console. Use the license: identifier, not the Steam or Discord one, for the most stable match.

Admins also bypass per-warehouse permission checks, so they can inspect and manage any warehouse.

The dashboard

The panel has four tabs:

  • Create a warehouse through a step-by-step wizard: pick the owner (any online player), place the entrance and the vehicle exit in-world, optionally pre-fill starter stock, seed the vault, and pre-hire crew with a role preset.

  • Inspect any existing warehouse to see and edit:

    • Overview — vault, member count, players inside, active orders; transfer ownership; edit coordinates; teleport in.

    • Stock — view warehouse + van stock, wipe either.

    • Members — hire/remove crew, set roles & permissions.

    • Inside — see who is in the bucket and who is knocking; eject one player or everyone.

    • Settings — edit the public storefront (vendor name, description, avatar) as an admin (logged).

  • Vault override — credit or debit any warehouse's vault (clamped to the configured ceiling/floor, and logged).

  • Force-respawn the van, delete the warehouse, and more.

Member permissions reference

Owners (and admins) grant these per member. Presets in cfg.memberPresets bundle them; the laptop Members tab fine-tunes each one.

Key
Group
Allows

placeOrder

Orders

Spend the vault on supply orders

pickupOrder

Orders

Collect ready supply drops

orderVan

Orders

Order a replacement van after a loss

vanCargo

Stock & van

Move stock between warehouse and van

driveVan

Stock & van

Drive the van out for runs

setSalePrice

Stock & van

Edit warehouse-wide sale prices

openSale

Stock & van

Start a van sale outside

viewFinancials

Vault & financials

See vault balance, revenue and analytics

vaultDeposit

Vault & financials

Add funds to the vault

vaultWithdraw

Vault & financials

Take funds out of the vault

answerDoor

People

Admit/reject knocks, kick guests

manageMembers

People

Add, edit, remove members (owner-only to grant)

chatRespond

People

Reply to phone-app messages

Last updated