> ## 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.

# Gambling

Four games to bet your wallet on. All games share the same bet limits and anti-abuse rules.

| Setting       | Value                |
| ------------- | -------------------- |
| Minimum bet   | \$10                 |
| Maximum bet   | \$50,000             |
| Rate limit    | 5 gambles per minute |
| Daily win cap | \$500,000            |

***

## Coinflip

Pick heads or tails using buttons. Win double your bet or lose it all.

<CodeGroup>
  ```typescript Syntax theme={null}
  .coinflip (bet)
  ```

  ```typescript Example theme={null}
  .coinflip 1000
  ```
</CodeGroup>

**Aliases:** `cf`, `flip`

| Result  | Payout                |
| ------- | --------------------- |
| Correct | +1× (double your bet) |
| Wrong   | Lose your bet         |

***

## Dice

Roll two dice against the dealer. Higher total wins. A tie returns your bet.

<CodeGroup>
  ```typescript Syntax theme={null}
  .dice (bet)
  ```

  ```typescript Example theme={null}
  .dice 500
  ```
</CodeGroup>

**Aliases:** `roll`

| Result           | Payout                |
| ---------------- | --------------------- |
| Your roll higher | +1× (double your bet) |
| Tie              | Bet returned          |
| Dealer higher    | Lose your bet         |

***

## Slots

Spin the slot machine. Hit three of a kind for a big payout, two of a kind to soften the blow, or nothing and lose it all.

<CodeGroup>
  ```typescript Syntax theme={null}
  .slots (bet)
  ```

  ```typescript Example theme={null}
  .slots 1000
  ```
</CodeGroup>

**Aliases:** `slot`, `spin`

| Result          | Payout                                    |
| --------------- | ----------------------------------------- |
| Three of a kind | Symbol multiplier × bet (see table below) |
| Two of a kind   | 0.5× (half your bet back)                 |
| No match        | Lose your bet                             |

**Three of a kind payouts:**

| Symbol     | Multiplier |
| ---------- | ---------- |
| 🍒 Cherry  | 1.5×       |
| 🍋 Lemon   | 2×         |
| 🍊 Orange  | 2.5×       |
| 🍇 Grape   | 3×         |
| ⭐ Star     | 5×         |
| 7️⃣ Seven  | 7×         |
| 💎 Diamond | 10×        |

<Info>
  The multiplier applies to your full bet. Two of a kind returns 0.5× your bet, so the net result is a 50% loss.
</Info>

***

## Blackjack

Play a classic game of blackjack against the dealer with Hit and Stand buttons. The dealer stands at 17. A natural blackjack (21 on your first two cards) pays **1.5×**.

<CodeGroup>
  ```typescript Syntax theme={null}
  .blackjack (bet)
  ```

  ```typescript Example theme={null}
  .blackjack 2000
  ```
</CodeGroup>

**Aliases:** `bj`

| Result                         | Payout        |
| ------------------------------ | ------------- |
| Natural blackjack (21 on deal) | +1.5×         |
| Beat the dealer                | +1×           |
| Tie                            | Bet returned  |
| Dealer wins / bust             | Lose your bet |
