Skip to content

Economy Configuration

Configure your server's economy system, currency, shop, and mission settings.

Quick Start

/economy-admin toggle enabled:true

Turns the economy on with sensible defaults — you can tune everything later.

View and Update Configuration

Economy settings live on the Economy dashboard page (open with /dashboard); Work briefing prompts are on the Work page.

Settings Reference

Option Default Description
enabled false Master economy toggle
currency_name coins Display name for currency (free to customize)
currency_symbol 💰 Emoji shown with amounts (free to customize)
shop_name Shop / Armory What /shop calls itself, per your Server Profile (free to customize)
mission_wager_max Varies Max coins a player can wager per mission
mission_difficulty_enabled true Allow hazardous and suicidal difficulty tiers

Dashboard/API Update Semantics

  • PATCH /api/config/economy/{server_id} updates only provided fields.
  • PUT /api/config/economy/{server_id} replaces the full economy config payload.
  • For mission prompt-only edits (for example from the dashboard mission prompt page), use PATCH to avoid overwriting unrelated economy settings.

API Default Fallbacks

When a guild has no stored economy config yet, API responses fall back to:

  • currency_name = coins
  • currency_symbol = 💰
  • starting_balance = 0
  • daily_reward = 100
  • weekly_reward = 700

Shop Management

Add Items

/shop-admin additem name:"VIP Pass" description:"Access VIP channels" price:5000 role:@VIP stock:10
  • Role items — Automatically grant a Discord role on purchase
  • Custom items — Stored in inventory (/shop inventory); sellable or turn-in-able depending on the item
  • Stock — Set to -1 for unlimited quantity

Edit & Restock

/shop-admin edititem item_id:1 price:3000
/shop-admin restock item_id:1 amount:25

Remove Items

/shop-admin removeitem item_id:1

Balance Management

Command Description
/economy-admin setbalance <user> <amount> Set exact balance (0 to 10^15)
/economy-admin addcoins <user> <amount> Add coins
/economy-admin removecoins <user> <amount> Remove coins

All balance changes are recorded in the audit log.

Audit Log

/economy-admin auditlog limit:20 action_type:set_balance

View a history of all admin economy actions with timestamps, targets, and old/new values.

Mission & Deployment Config

Mission settings are managed under /operations:

Command Description
/operations setreward <amount> Reward per squad member
/operations setchannel <channel> Deployment report channel
/operations setmaxsquad <size> Max squad size (1–10, includes the deployer)
/operations setdeployment <prompt> Custom AI theme for deployment briefings
/operations setbountyboard [channel] Bounty Board post channel

Current config patch validation limits:

  • Max squad size: 1-10
  • Campaign max squads: 1-10
  • Campaign max missions: 1-20