RoyaleWindRoyaleWind

Commands

Administrative commands for managing player and entity routing buckets.

rw_buckets Admin Commands

Administrative chat commands for managing player and entity routing buckets. Every command below is restricted by an ACE permission configured in data/cfg.lua — the values shown are the defaults shipped with the resource.


setpb <id> <bucket>

Description: Sets a player's bucket.

setpb 12 mission_alpha
  • id: playerId — Player ID.
  • bucket: string — Bucket name.

Restricted to: manager (cfg.ace.setpb)


resetpb <id>

Description: Removes a player from their bucket.

resetpb 12
  • id: playerId — Player ID.

Restricted to: support (cfg.ace.resetpb)


listb

Description: Lists all active buckets, printed to the server console as JSON.

listb
  • Parameters: None

Restricted to: support (cfg.ace.listb)


getpb <id>

Description: Gets a player's current bucket.

getpb 12
  • id: playerId — Player ID.

Restricted to: support (cfg.ace.getpb)


showb <bucket>

Description: Shows the contents of a specific bucket (players and entities), printed to the server console as JSON.

showb mission_alpha
  • bucket: string — Bucket name.

Restricted to: support (cfg.ace.showb)


killb <bucket>

Description: Kills a specific bucket — removes everyone and everything in it, then deletes it. Irreversible.

killb mission_alpha
  • bucket: string — Bucket name.

Restricted to: god (cfg.ace.killb)


buckets

Description: Opens the in-game buckets menu — lists active buckets with options to view contents or kill a bucket.

buckets
  • Parameters: None

Restricted to: god (cfg.ace.menu)

Requires useDataTables = true in data/cfg.lua and a compatible datatable resource running — see Configuration. Otherwise the command exists but does nothing.

The menu's Kill and Reset Player actions additionally require the hardcoded command.rw_buckets ACE, granted separately from the permission above — see Configuration for the full permission model.

On this page