Skip to content

Commands

All admin chat commands can be renamed in config.lua.

Configuration

lua
Config.commands = {
    placebox       = 'placebox',
    lootables      = 'lootables',
    items          = 'items',            -- routes to the Items (Presets) tab
    metadata       = 'metadata',         -- routes to the Metadata tab
    exportlootable = 'exportlootable',   -- routes to the Exports view
}
OptionDefaultPurpose
placebox/placeboxPlacement mode — spawn a new box or edit an existing one
lootables/lootablesOpen the admin panel (Existing / Editor / Metadata / Items tabs)
items/itemsShortcut to the Items tab inside the admin panel
metadata/metadataShortcut to the Metadata tab
exportlootable/exportlootableShortcut to the Exports view

Since v2.1.0 the /items, /metadata, and /exportlootable commands are convenience shortcuts — they all route into the same all-in-one panel as /lootables, just focused on the relevant tab.

Renaming

lua
Config.commands = {
    placebox  = 'lb',          -- /lb instead of /placebox
    items     = 'lootitems',   -- /lootitems instead of /items
    -- ...
}

Permissions

Every command is server-registered and gated by the lootables.admin ACE permission (configurable via Config.placement.acePermission). Players without the ACE see a silent no-op — the commands are hidden entirely.

add_ace identifier.discord:YOUR_ID lootables.admin allow

Config.debug = true bypasses the check for local development.

Robicore