Admin Flow
The recommended end-to-end workflow for building out a production crate setup — from config to live on your server.
The Full Workflow
This is the cleanest path from zero to a fully working crate live on your server. Follow these steps in order for every new crate you build.
1. Create & Configure
Either copy a config file or use the in-game editor. Decide upfront:
- Is this crate RANDOM or SELECTABLE?
- Does it use PHYSICAL or VIRTUAL keys?
- What rewards go in the pool?
- Should cooldown, pity, or limits be active?
/bc editor2. Test Before Placing
Before placing the crate in the world, preview the opening flow and give yourself test keys:
# Preview crate (no key consumed)
/bc preview <crate_id>
# Give yourself 10 test keys
/bc givekey <crate_id> <yourname> 103. Place the Crate
Stand at the desired location and set the crate:
/bc setcrate <crate_id>4. Validate the Full Flow
Open the crate repeatedly (with test keys) and verify each part of the system works as expected:
5. Debug If Anything Feels Wrong
If you notice unexpected behavior — wrong rewards, keys not consuming, cooldown not applying — enable debug tracing for yourself:
# Trace your own session
/bc debug on <yourname>
# After testing, turn it off
/bc debug offDebug output will trace key validation, reward selection, pity state, cooldown checks, and broadcast triggers in real time.