Orbit StudiosOrbit Studios
Orbit Studios Resourcesorbit-dynamichud

Commands

Client and server commands available in orbit-dynamichud.

Commands

Framework note

The shipped cash and bank command implementation reads QB/QBX-style PlayerData.money from QBCore.Functions.GetPlayer. Disable or adapt those commands if you run ESX or standalone mode.

Command names come from the locale files, so the default English names are shown below. If you translate locales/en.json or change locale strings, use the translated command names in-game.

Prop

Type

Parameters

Prop

Type

FiveM console
/cash
/cash 12
/bank
/bank 12
/setstress 25
/setstress 12 25

Square brackets mean optional. Angle brackets mean required. For example, /cash [targetId] can be used as /cash or /cash 12, while /setstress <stress> needs a stress value.

Server command availability is controlled from server/config.lua.

resources/[orbit]/orbit-dynamichud/server/config.lua
Config.Commands.setstress = {
    enabled = true,
    allow = 'group.admin'
}

allow is the ox_lib restricted command group. Use the same shape for cash, bank, and setstress. Leave it empty only if normal players should be able to run the command.

resources/[orbit]/orbit-dynamichud/server/config.lua
Config.Commands.cash = {
    enabled = false,
    allow = 'group.admin'
}

On this page