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

# Banking & Wealth

## Manage your money, check the leaderboard, and grow your balance through investments and the lottery.

## Balance

View your wallet, bank balance, and net worth. You can also check another member's balance.

<CodeGroup>
  ```typescript Syntax theme={null}
  .balance (@member)
  ```

  ```typescript Examples theme={null}
  .balance
  .balance @User
  ```
</CodeGroup>

## **Aliases:** `bal`, `wallet`, `cash`

## Depositing

Move cash from your wallet into your bank.

<CodeGroup>
  ```typescript Syntax theme={null}
  .deposit (amount | all)
  ```

  ```typescript Examples theme={null}
  .deposit 5000
  .deposit all
  ```
</CodeGroup>

**Aliases:** `dep`

<Warning>
  Your bank is no longer a perfect safe. Other players can run a `heist` against your bank balance directly. See [Crime & Robbery](/economy/crime-and-robbery) for details.
</Warning>

***

## Withdrawing

Move cash from your bank back to your wallet.

<CodeGroup>
  ```typescript Syntax theme={null}
  .withdraw (amount | all)
  ```

  ```typescript Examples theme={null}
  .withdraw 1000
  .withdraw all
  ```
</CodeGroup>

## **Aliases:** `with`

## Paying another member

Send cash directly from your wallet to another member.

<CodeGroup>
  ```typescript Syntax theme={null}
  .pay (@member) (amount)
  ```

  ```typescript Example theme={null}
  .pay @User 500
  ```
</CodeGroup>

## **Aliases:** `transfer`, `give`

## Investments

Put cash into the volatile market for a chance at big returns. **The multiplier is hidden and only revealed when your investment matures** — you cannot preview or reroll your return, and you cannot withdraw early.

| Setting          | Value                  |
| ---------------- | ---------------------- |
| Minimum          | \$500                  |
| Maximum          | \$250,000 per position |
| Lock period      | 24 hours               |
| Multiplier range | 0.5× – 2.5×            |

<CodeGroup>
  ```typescript Syntax theme={null}
  .invest (amount)
  ```

  ```typescript Example theme={null}
  .invest 10000
  ```
</CodeGroup>

**Aliases:** `investment` Run `.invest` with no amount to view your current portfolio. Your return shows as `???` until maturity — the multiplier is rolled at that moment, not when you invest. Matured investments are automatically paid to your wallet every 5 minutes.

<Warning>
  The multiplier can go below 1×. A 0.5× result on a $10,000 investment returns only $5,000. You won't know the outcome until it's too late to back out.
</Warning>

***

## Lottery

A server-wide lottery that draws a winner every **4 hours**. Tickets cost **\$500 each** and go directly into the jackpot pool. Your odds scale with how many tickets you hold relative to the total.

| Setting               | Value         |
| --------------------- | ------------- |
| Ticket price          | \$500         |
| Max tickets per round | 10            |
| Draw interval         | Every 4 hours |

### Checking the jackpot

<CodeGroup>
  ```typescript Syntax theme={null}
  .lottery
  ```
</CodeGroup>

**Aliases:** `lotto` Shows the current jackpot, total tickets sold, your tickets, your win odds, and time until the next draw.

### Buying tickets

<CodeGroup>
  ```typescript Syntax theme={null}
  .lottery buy (amount)
  ```

  ```typescript Examples theme={null}
  .lottery buy 1
  .lottery buy 10
  ```
</CodeGroup>

<Info>
  The winner is drawn automatically and announced in the channel where the last ticket was purchased.
</Info>

***

## Leaderboard

View the wealthiest members in the server, ranked by net worth (wallet + bank combined).

<CodeGroup>
  ```typescript Syntax theme={null}
  .richest
  ```
</CodeGroup>

**Aliases:** `baltop`, `moneylb`
