> ## Documentation Index
> Fetch the complete documentation index at: https://docs.celestia.rest/llms.txt
> Use this file to discover all available pages before exploring further.

# Economy

> Earn, spend, gamble, and manage your stardust and stella gems

## Overview

The Celestia economy system lets server members earn stardust through daily rewards, work, and crime — then spend it in the shop, gamble it at the casino, or transfer it to other users. A secondary premium currency, stella gems, can be earned through weekly rewards, slots jackpots, and stella packs.

<Info>
  Economy commands are available as both slash commands (`/wallet`, `/economy`) and prefix commands (`~wallet`, `~economy`). Most subcommands support short aliases too.
</Info>

***

## Currency

<CardGroup cols={2}>
  <Card title="Stardust" icon="star">
    The primary currency. Earned through daily/weekly rewards, work, crime, and gambling. Stored in your wallet and bank.
  </Card>

  <Card title="Stella Gems" icon="gem">
    The premium currency. Earned through weekly lucky drops, slots jackpots, and buying stella packs from the shop. Can be transferred to other users.
  </Card>
</CardGroup>

***

## Wallet Commands

<AccordionGroup>
  <Accordion title="balance" icon="wallet">
    View your stardust and stella gem balance.

    <CodeGroup>
      ```bash Slash theme={null}
      /wallet balance [user]
      ```

      ```bash Prefix theme={null}
      ~wallet balance [@user]
      ~bal [@user]
      ```
    </CodeGroup>

    **Parameters:**

    * **\[user]** — Optional: Check another user's balance

    **Shows:**

    * Wallet stardust
    * Bank stardust
    * Stella gems
    * Net worth

    **Aliases:** `~bal`, `~balance`\
    **Permissions:** None
  </Accordion>

  <Accordion title="daily" icon="sun">
    Claim your daily stardust reward.

    <CodeGroup>
      ```bash Slash theme={null}
      /wallet daily
      ```

      ```bash Prefix theme={null}
      ~wallet daily
      ~daily
      ```
    </CodeGroup>

    **Cooldown:** 24 hours

    **Features:**

    * Base reward configured per server
    * Streak bonus: +50 stardust per day (max +500)
    * Daily Boost item applies 1.5x to your reward

    **Aliases:** `~daily`\
    **Permissions:** None
  </Accordion>

  <Accordion title="weekly" icon="calendar">
    Claim your weekly stardust reward.

    <CodeGroup>
      ```bash Slash theme={null}
      /wallet weekly
      ```

      ```bash Prefix theme={null}
      ~wallet weekly
      ~weekly
      ```
    </CodeGroup>

    **Cooldown:** 7 days

    **Features:**

    * Larger base reward than daily
    * Streak bonus: +500 stardust per week
    * 25% chance to earn 1–3 bonus stella gems

    **Aliases:** `~weekly`\
    **Permissions:** None
  </Accordion>

  <Accordion title="work" icon="briefcase">
    Work a job and earn stardust.

    <CodeGroup>
      ```bash Slash theme={null}
      /wallet work
      ```

      ```bash Prefix theme={null}
      ~wallet work
      ~work
      ```
    </CodeGroup>

    **Cooldown:** Configured per server

    **Features:**

    * Earn a random amount within the server's configured range
    * Work Boost item doubles earnings
    * Randomized work scenarios each time

    **Aliases:** `~work`\
    **Permissions:** None (Guild only)
  </Accordion>

  <Accordion title="crime" icon="mask">
    Attempt a crime for a big reward — or get fined.

    <CodeGroup>
      ```bash Slash theme={null}
      /wallet crime
      ```

      ```bash Prefix theme={null}
      ~wallet crime
      ~crime
      ```
    </CodeGroup>

    **Cooldown:** Configured per server

    **Outcomes:**

    * **60% success** — Earn stardust above the work range
    * **40% failure** — Pay a fine from your wallet
    * **Crime Shield item** — Blocks the fine on failure

    **Aliases:** `~crime`\
    **Permissions:** None (Guild only)
  </Accordion>

  <Accordion title="rob" icon="user-ninja">
    Attempt to steal stardust from another user's wallet.

    <CodeGroup>
      ```bash Slash theme={null}
      /wallet rob <@user>
      ```

      ```bash Prefix theme={null}
      ~wallet rob <@user>
      ~rob <@user>
      ```
    </CodeGroup>

    **Parameters:**

    * **@user** — The target to rob

    **Notes:**

    * Must be enabled by server admins
    * Cannot rob while in passive mode
    * Cannot rob bots or yourself
    * Target's Rob Shield blocks the attempt

    **Aliases:** `~rob`\
    **Permissions:** None (Guild only)
  </Accordion>

  <Accordion title="passive" icon="shield">
    Toggle passive mode to protect yourself from being robbed.

    <CodeGroup>
      ```bash Slash theme={null}
      /wallet passive
      ```

      ```bash Prefix theme={null}
      ~wallet passive
      ```
    </CodeGroup>

    **Notes:**

    * Cannot enable while on rob cooldown
    * While passive: you cannot be robbed, but you also cannot rob others

    **Permissions:** None (Guild only)
  </Accordion>

  <Accordion title="deposit" icon="arrow-down-to-line">
    Deposit stardust from your wallet into your bank.

    <CodeGroup>
      ```bash Slash theme={null}
      /wallet deposit <amount|all>
      ```

      ```bash Prefix theme={null}
      ~wallet deposit <amount|all>
      ~deposit <amount|all>
      ```
    </CodeGroup>

    **Parameters:**

    * **amount** — How much to deposit, or `all`

    **Aliases:** `~deposit`\
    **Permissions:** None
  </Accordion>

  <Accordion title="withdraw" icon="arrow-up-from-line">
    Withdraw stardust from your bank into your wallet.

    <CodeGroup>
      ```bash Slash theme={null}
      /wallet withdraw <amount|all>
      ```

      ```bash Prefix theme={null}
      ~wallet withdraw <amount|all>
      ~withdraw <amount|all>
      ```
    </CodeGroup>

    **Parameters:**

    * **amount** — How much to withdraw, or `all`

    **Aliases:** `~withdraw`\
    **Permissions:** None
  </Accordion>

  <Accordion title="pay" icon="paper-plane">
    Transfer stardust or stella gems to another user.

    <CodeGroup>
      ```bash Slash theme={null}
      /wallet pay <@user> <amount>
      ```

      ```bash Prefix theme={null}
      ~wallet pay <@user> <amount>
      ~wallet pay <@user> <amount> stella
      ~pay <@user> <amount>
      ~transfer <@user> <amount>
      ```
    </CodeGroup>

    **Parameters:**

    * **@user** — Who to send to
    * **amount** — How much to send
    * **\[stella]** — Optional: Add `stella` at the end to send stella gems instead of stardust

    **Notes:**

    * Cannot pay yourself or bots
    * A confirmation prompt appears before the transfer goes through
    * Stardust is deducted from wallet only
    * Stella gems are deducted from your stella gem balance

    <Warning>
      Trading virtual currency for real-world value (money, crypto, Nitro, etc.) is strictly against the rules and will result in a permanent economy ban.
    </Warning>

    **Aliases:** `~pay`, `~transfer`\
    **Permissions:** None
  </Accordion>

  <Accordion title="inventory" icon="box">
    View your inventory or another user's.

    <CodeGroup>
      ```bash Slash theme={null}
      /wallet inventory [user]
      ```

      ```bash Prefix theme={null}
      ~wallet inventory [@user]
      ~inv [@user]
      ~bag [@user]
      ```
    </CodeGroup>

    **Parameters:**

    * **\[user]** — Optional: View another user's inventory

    **Aliases:** `~inv`, `~bag`\
    **Permissions:** None
  </Accordion>

  <Accordion title="use" icon="hand-pointer">
    Use a consumable item from your inventory.

    <CodeGroup>
      ```bash Slash theme={null}
      /wallet use <item>
      ```

      ```bash Prefix theme={null}
      ~wallet use <item>
      ~use <item>
      ```
    </CodeGroup>

    **Parameters:**

    * **item** — Item name or ID

    **Usable Items:**

    * **Buff items** — Work Boost, Daily Boost, Rob Shield, Crime Shield
    * **Lottery tickets** — Scratch for stardust, stella gems, or buffs

    **Aliases:** `~use`\
    **Permissions:** None
  </Accordion>

  <Accordion title="bounty" icon="crosshairs">
    Place, view, or cancel a bounty on a user.

    <CodeGroup>
      ```bash Slash theme={null}
      /wallet bounty <place|list|cancel> [@user] [amount]
      ```

      ```bash Prefix theme={null}
      ~wallet bounty <place|list|cancel> [@user] [amount]
      ~bounty <place|list|cancel> [@user] [amount]
      ```
    </CodeGroup>

    **Actions:**

    * **place** — Set a bounty (min 50,000 / max 1,000,000 stardust)
    * **list** — View all active bounties
    * **cancel** — Reclaim your bounty (locked for 1 hour after placing)

    **Notes:**

    * Target is notified via DM
    * Bounties expire after 24 hours
    * Deducted from wallet first, then bank

    **Aliases:** `~bounty`\
    **Permissions:** None
  </Accordion>
</AccordionGroup>

***

## Gambling

<AccordionGroup>
  <Accordion title="coinflip" icon="coins">
    Bet stardust on a coin flip.

    <CodeGroup>
      ```bash Slash theme={null}
      /wallet coinflip <amount> [heads|tails]
      ```

      ```bash Prefix theme={null}
      ~wallet coinflip <amount> [heads|tails]
      ~cf <amount> [heads|tails]
      ~flip <amount> [heads|tails]
      ```
    </CodeGroup>

    **Parameters:**

    * **amount** — Amount to bet
    * **\[side]** — Optional: `heads` or `tails` (default: heads)

    **Payout:** 1:1 (double your bet)\
    **Cooldown:** 5–10 seconds\
    **Aliases:** `~cf`, `~flip`\
    **Permissions:** None
  </Accordion>

  <Accordion title="slots" icon="slot-machine">
    Spin the slot machine.

    <CodeGroup>
      ```bash Slash theme={null}
      /wallet slots <amount>
      ```

      ```bash Prefix theme={null}
      ~wallet slots <amount>
      ~slots <amount>
      ~slot <amount>
      ```
    </CodeGroup>

    **Parameters:**

    * **amount** — Amount to bet

    **Payouts:**

    | Result                | Payout                   |
    | --------------------- | ------------------------ |
    | Triple match          | 3x bet                   |
    | Triple gems (jackpot) | 3x bet + 1–5 stella gems |
    | Two matching          | 1.5x bet                 |
    | No match              | Lose bet                 |

    **Cooldown:** 5–10 seconds\
    **Aliases:** `~slots`, `~slot`\
    **Permissions:** None
  </Accordion>

  <Accordion title="blackjack" icon="cards">
    Play a game of blackjack against the dealer.

    <CodeGroup>
      ```bash Slash theme={null}
      /wallet blackjack <amount>
      ```

      ```bash Prefix theme={null}
      ~wallet blackjack <amount>
      ~bj <amount>
      ```
    </CodeGroup>

    **Parameters:**

    * **amount** — Amount to bet (max 100,000)

    **Actions:**

    * **Hit** — Draw another card
    * **Stand** — End your turn
    * **Double Down** — Double your bet and draw one card
    * **Split** — Split matching cards into two hands (costs equal bet)

    **Payouts:**

    * Natural blackjack: 1.5x bet
    * Win: 2x bet returned
    * Push (tie): bet returned
    * Bust / dealer wins: lose bet

    **Cooldown:** 5–10 seconds\
    **Aliases:** `~bj`\
    **Permissions:** None
  </Accordion>

  <Accordion title="dice" icon="dice">
    Roll dice against the dealer — higher roll wins.

    <CodeGroup>
      ```bash Slash theme={null}
      /wallet dice <amount>
      ```

      ```bash Prefix theme={null}
      ~wallet dice <amount>
      ~dice <amount>
      ```
    </CodeGroup>

    **Parameters:**

    * **amount** — Amount to bet (max 100,000)

    **Outcomes:**

    * **Higher roll** — Win your bet (1:1)
    * **Lower roll** — Lose your bet
    * **Tie** — Bet returned

    **Cooldown:** 5–10 seconds\
    **Aliases:** `~dice`\
    **Permissions:** None
  </Accordion>

  <Accordion title="roulette" icon="circle-dot">
    Spin the roulette wheel and bet on the outcome.

    <CodeGroup>
      ```bash Slash theme={null}
      /wallet roulette [action] [bet] [amount] [duration] [poolid]
      ```

      ```bash Prefix theme={null}
      ~roulette <bet type> <amount|all>
      ~rl <bet type> <amount|all>
      ```
    </CodeGroup>

    **How It Works**

    * **In servers** — Bets are pooled with other players in a shared 30-second round. Everyone places their bets, the wheel spins once, and winners are paid out together.
    * **In DMs/GCs** — Instant solo spin with immediate result.

    **Global Pools**

    Create a custom roulette pool with your own duration that anyone can join — across servers and DMs.

    | Action          | Usage                                            |
    | --------------- | ------------------------------------------------ |
    | `bet` (default) | Join the current guild round or spin solo in DMs |
    | `start`         | Create a global pool with a custom duration      |
    | `join`          | Join a global pool by ID                         |
    | `close`         | Close your own pool early                        |
    | `ongoing`       | List all open global pools                       |

    ```bash theme={null}
    # Start a pool lasting 5 minutes
    /wallet roulette action:start duration:5m

    # Join a pool
    /wallet roulette action:join poolid:abc12 bet:red amount:1000

    # View open pools
    /wallet roulette action:ongoing
    ```

    **Bet Types & Payouts:**

    | Bet                         | Covers        | Payout |
    | --------------------------- | ------------- | ------ |
    | `red` / `black`             | Color         | 1:1    |
    | `even` / `odd`              | Parity        | 1:1    |
    | `low` / `high`              | 1–18 / 19–36  | 1:1    |
    | `1st12` / `2nd12` / `3rd12` | Dozens        | 2:1    |
    | `col1` / `col2` / `col3`    | Columns       | 2:1    |
    | `0`–`36`                    | Single number | 35:1   |

    **Notes:**

    * Max bet: **1,000,000 stardust**
    * Pool results are DM'd to all participants when the round ends
    * You can place multiple bets in the same round by running the command again

    **Cooldown:** 3–6 seconds\
    **Aliases:** `~rl`\
    **Permissions:** None
  </Accordion>
</AccordionGroup>

***

## Shop & Economy Commands

<AccordionGroup>
  <Accordion title="shop" icon="store">
    Browse the Celestia economy shop.

    <CodeGroup>
      ```bash Slash theme={null}
      /economy shop [stardust|stella]
      ```

      ```bash Prefix theme={null}
      ~economy shop [stardust|stella]
      ~shop [stardust|stella]
      ```
    </CodeGroup>

    **Parameters:**

    * **\[tab]** — Optional: `stardust` or `stella` (default: stardust)

    **Aliases:** `~shop`\
    **Permissions:** None
  </Accordion>

  <Accordion title="buy" icon="cart-shopping">
    Buy an item from the shop.

    <CodeGroup>
      ```bash Slash theme={null}
      /economy buy <item> [quantity]
      ```

      ```bash Prefix theme={null}
      ~economy buy <item> [quantity]
      ~buy <item> [quantity]
      ```
    </CodeGroup>

    **Parameters:**

    * **item** — Item name or ID
    * **\[quantity]** — Optional: How many to buy (default: 1, max: 100)

    **Aliases:** `~buy`\
    **Permissions:** None
  </Accordion>

  <Accordion title="sell" icon="tag">
    Sell an item from your inventory.

    <CodeGroup>
      ```bash Slash theme={null}
      /economy sell <item>
      ```

      ```bash Prefix theme={null}
      ~economy sell <item>
      ~sell <item>
      ```
    </CodeGroup>

    **Parameters:**

    * **item** — Item name or ID

    **Notes:**

    * Only items with a sell price can be sold
    * Role items remove the role on sell

    **Permissions:** None
  </Accordion>

  <Accordion title="leaderboard" icon="trophy">
    View the top stardust and stella holders.

    <CodeGroup>
      ```bash Slash theme={null}
      /economy leaderboard
      ```

      ```bash Prefix theme={null}
      ~economy leaderboard
      ~lb
      ~top
      ~richest
      ```
    </CodeGroup>

    **Views:**

    * Guild Stardust
    * Global Stardust
    * Guild Stella
    * Global Stella

    **Features:**

    * Paginated (10 per page)
    * Jump to your own rank
    * Switch views with the dropdown

    **Aliases:** `~lb`, `~top`, `~richest`\
    **Permissions:** None
  </Accordion>
</AccordionGroup>

***

## Admin Commands

<AccordionGroup>
  <Accordion title="economy config" icon="sliders">
    Configure the server economy settings.

    <CodeGroup>
      ```bash Slash theme={null}
      /economy config
      ```

      ```bash Prefix theme={null}
      ~economy config
      ```
    </CodeGroup>

    **Configurable Settings:**

    * Enable/disable economy globally
    * Enable/disable robbing
    * Daily reward range (min–max stardust)
    * Weekly reward range (min–max stardust)
    * Work reward range (min–max stardust)
    * Crime reward/fine range (min–max stardust)

    **Permissions:** Manage Server
  </Accordion>

  <Accordion title="economy disable" icon="ban">
    Disable economy commands in a channel.

    <CodeGroup>
      ```bash Slash theme={null}
      /economy disable [channel]
      ```

      ```bash Prefix theme={null}
      ~economy disable [#channel]
      ```
    </CodeGroup>

    **Parameters:**

    * **\[channel]** — Optional: Channel to disable (defaults to current)

    **Permissions:** Manage Server
  </Accordion>

  <Accordion title="economy enable" icon="circle-check">
    Re-enable economy commands in a channel.

    <CodeGroup>
      ```bash Slash theme={null}
      /economy enable [channel]
      ```

      ```bash Prefix theme={null}
      ~economy enable [#channel]
      ```
    </CodeGroup>

    **Parameters:**

    * **\[channel]** — Optional: Channel to enable (defaults to current)

    **Permissions:** Manage Server
  </Accordion>
</AccordionGroup>

***

## How It Works

<Steps>
  <Step title="Earn Stardust">
    Start by claiming daily and weekly rewards, then work and commit crimes regularly:

    ```bash theme={null}
    ~daily
    ~weekly
    ~work
    ~crime
    ```
  </Step>

  <Step title="Protect Your Funds">
    Keep stardust in your bank to protect it from robbers:

    ```bash theme={null}
    ~deposit all
    ```
  </Step>

  <Step title="Spend & Gamble">
    Visit the shop to buy items, or try your luck at the casino:

    ```bash theme={null}
    ~shop
    ~slots 500
    ~blackjack 1000
    ~roulette red 5000
    ```
  </Step>

  <Step title="Climb the Leaderboard">
    Track your progress against other server members:

    ```bash theme={null}
    ~lb
    ```
  </Step>
</Steps>

***

## Items & Buffs

### Buff Items

Consumable items that grant temporary advantages:

| Item         | Effect                        |
| ------------ | ----------------------------- |
| Work Boost   | 2x work earnings (time-based) |
| Daily Boost  | 1.5x daily reward (one-time)  |
| Rob Shield   | Blocks one successful rob     |
| Crime Shield | Blocks one crime fine         |

### Lottery Tickets

Scratch tickets with tiered prizes — stardust, stella gems, or buffs. Higher rarity tickets have better odds and bigger rewards.

```bash theme={null}
# Use a ticket from your inventory
~use ticket_common
~use ticket_legendary
```

<Note>
  Lottery tickets have a 5-minute cooldown between scratches.
</Note>

***

## Bank vs. Wallet

<CardGroup cols={2}>
  <Card title="Wallet" icon="wallet">
    * Stardust here is **at risk** from robbers
    * Required for gambling and purchases
    * Used first when paying bounties
  </Card>

  <Card title="Bank" icon="building-columns">
    * Stardust here is **safe** from robbers
    * Cannot be gambled or spent directly
    * Used second when placing bounties
  </Card>
</CardGroup>

<Warning>
  Always deposit excess stardust into your bank if you're not actively using it. Robbers can only steal from your wallet.
</Warning>

***

## Permission Requirements

<CardGroup cols={2}>
  <Card title="Bot Permissions" icon="robot">
    The bot needs:

    * Send Messages
    * Embed Links
    * Use External Emojis
    * Read Message History
  </Card>

  <Card title="User Permissions" icon="user">
    Command requirements:

    * **Manage Server** — Config, disable, enable
    * **None** — All other economy commands
  </Card>
</CardGroup>

***

## Quick Reference

<Tabs>
  <Tab title="Earning">
    ```bash theme={null}
    # Daily reward (24h cooldown)
    ~daily

    # Weekly reward (7d cooldown)
    ~weekly

    # Work for stardust
    ~work

    # Attempt a crime
    ~crime
    ```
  </Tab>

  <Tab title="Gambling">
    ```bash theme={null}
    # Coin flip
    ~cf heads 500

    # Slots
    ~slots 1000

    # Blackjack
    ~bj 5000

    # Dice
    ~dice 2000

    # Roulette (guild round, red 1:1)
    ~roulette red 1000

    # Roulette (single number, 35:1)
    ~roulette 17 500

    # Roulette global pool
    /wallet roulette action:start duration:5m
    /wallet roulette action:join poolid:abc12 bet:red amount:1000
    ```
  </Tab>

  <Tab title="Banking">
    ```bash theme={null}
    # Check balance
    ~bal

    # Deposit everything
    ~deposit all

    # Withdraw amount
    ~withdraw 5000

    # Pay stardust
    ~pay @User 1000

    # Pay stella gems
    ~pay @User 5 stella
    ```
  </Tab>

  <Tab title="Shop">
    ```bash theme={null}
    # Browse stardust shop
    ~shop stardust

    # Browse stella shop
    ~shop stella

    # Buy an item
    ~buy "Work Boost"

    # Buy multiple
    ~buy mythic ticket 5

    # Sell an item
    ~sell "Item Name"
    ```
  </Tab>

  <Tab title="Social">
    ```bash theme={null}
    # View leaderboard
    ~lb

    # Place a bounty
    ~bounty place @User 50000

    # View active bounties
    ~bounty list

    # Cancel your bounty
    ~bounty cancel @User

    # Toggle passive mode
    ~passive

    # Rob a user
    ~rob @User
    ```
  </Tab>
</Tabs>

***

## Common Use Cases

<AccordionGroup>
  <Accordion title="Maximizing daily income" icon="chart-line">
    ```bash theme={null}
    # Claim everything on cooldown
    ~daily
    ~weekly
    ~work
    ~crime

    # Maintain streaks for bonus stardust
    # Daily streak: +50 per day (cap +500)
    # Weekly streak: +500 per week
    ```

    Consistent daily/weekly claiming is the fastest way to build wealth.
  </Accordion>

  <Accordion title="Safe gambling strategy" icon="dice">
    ```bash theme={null}
    # Low risk: coinflip (1:1)
    ~cf 500

    # Medium risk: slots (up to 3x)
    ~slots 1000

    # High risk/reward: roulette number (35:1)
    ~roulette 7 100

    # Always keep savings in bank
    ~deposit all
    ```

    Never gamble more than you can afford to lose.
  </Accordion>

  <Accordion title="Using global roulette pools" icon="circle-dot">
    ```bash theme={null}
    # Create a 10-minute pool
    /wallet roulette action:start duration:10m

    # Share the pool ID with friends
    # They join with:
    /wallet roulette action:join poolid:<id> bet:red amount:5000

    # View all open pools
    /wallet roulette action:ongoing

    # Close your pool early
    /wallet roulette action:close poolid:<id>
    ```

    Pool results are DM'd to all participants when the round ends.
  </Accordion>

  <Accordion title="Protecting your stardust" icon="shield">
    ```bash theme={null}
    # Enable passive mode
    ~passive

    # Move funds to bank
    ~deposit all

    # Buy a Rob Shield from shop
    ~buy rob_shield
    ~use rob_shield
    ```

    Passive mode + bank deposits make you effectively rob-proof.
  </Accordion>

  <Accordion title="Server admin setup" icon="gear">
    ```bash theme={null}
    # Configure reward ranges
    /economy config

    # Disable economy in off-topic channels
    /economy disable #off-topic

    # Re-enable in specific channel
    /economy enable #economy
    ```

    Set appropriate ranges for your server's economy balance.
  </Accordion>
</AccordionGroup>

***

## Important Notes

<Info>
  **Streak Mechanics**

  * Daily streak resets if you miss more than 48 hours
  * Weekly streak resets if you miss more than 14 days
  * Streaks grant bonus stardust on top of the base reward
</Info>

<Warning>
  **Gambling Limits**

  * Maximum bet on blackjack and dice is 100,000 stardust
  * Maximum bet on roulette is 1,000,000 stardust
  * All gambling is from your wallet — funds in the bank cannot be wagered directly
</Warning>

<Note>
  **Guild-Only Commands**

  Work, crime, rob, and passive mode only work inside servers. Balance, banking, gambling, inventory, and roulette global pools work in DMs too.
</Note>

<Warning>
  **Trading Policy**

  Trading stardust or stella gems for real-world value — including money, crypto, or Nitro — is strictly prohibited and will result in a permanent economy ban.
</Warning>

***

## Related Features

<CardGroup cols={2}>
  <Card title="Giveaways" icon="gift" href="/giveaways">
    Host giveaways with stardust prizes and entry multipliers
  </Card>

  <Card title="Server Settings" icon="server" href="/server">
    Configure other server features alongside the economy
  </Card>
</CardGroup>
