Quick Start
Quick Start
Section titled “Quick Start”This is the fastest path to a working Wonder setup.
1. Leave Wonder in Local Mode
Section titled “1. Leave Wonder in Local Mode”In config/wonder/config.conf:
wonder { role = "LOCAL"}That keeps matching and storage on the same server with no Redis requirement.
2. Keep One Main Channel
Section titled “2. Keep One Main Channel”The bundled channels.conf already gives you a usable main channel:
{ id = "main" name = "Wonder Trade" command = "wonder" permission = "wonder.use" enabled = true queue-capacity = 500 cooldown-seconds = 60 pool-id = "main_pool"}For initial testing, that is enough.
3. Seed a Trade Pool
Section titled “3. Seed a Trade Pool”If no second player is queued, Wonder can match against a configured pool entry. Keep the bundled main_pool in trade-pools.conf or add your own:
pools = [ { id = "main_pool" name = "Main Wonder Pool" enabled = true seed-queries = [ "pikachu level=12", "eevee level=14", "ralts level=15" ] }]4. Queue a Pokemon
Section titled “4. Queue a Pokemon”Use one of these:
/wonder/wonder queue party/wonder queue party-slot 0The GUI flow is usually the easiest path because it shows channel state, result status, and the currently selected Pokemon.
5. Reveal the Result
Section titled “5. Reveal the Result”When a result is ready:
/wonder resultsOr click the Results button from the Wonder main GUI.
6. Check Status and History
Section titled “6. Check Status and History”/wonder status/wonder historyThese surfaces show queued entries, ready results, channel stats, pools, and past Wonder trades.
7. Optional: Open the Builder
Section titled “7. Optional: Open the Builder”If you want a visual starting point for the config files:
It exports Wonder’s current HOCON config set for the builder-managed files.