Skip to main content

Documentation Index

Fetch the complete documentation index at: https://pumpkings.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Horse Racing lets you wager on one of four horses, each with a distinct win probability and payout multiplier. The moment the first bet is placed, a 30-second countdown begins. Any player can place a bet during that window. When the timer hits zero, the race runs automatically using a weight-based random draw — the higher a horse’s win chance, the more likely it is to win, but the lower its payout multiplier. Riskier horses pay out more when they do come through. All horse names, win chances, and odds are fully configurable in config.yml.

The Horses

Four horses compete in every race. Choose based on your risk appetite — a safe favourite or a long-shot with a massive multiplier.
HorseWin ChancePayout Multiplier
Relámpago ⚡40 %
Sombra 🌑30 %
Tornado 🌪20 %
Cometa ☄10 %10×
Win chances are weight-based, not strict percentages. The winner is determined by drawing a random value against the combined weight of all horses, so results are stochastic — past races do not influence future outcomes.

How to Play

1

Open the betting GUI

Run /carreras to open the horse racing betting interface. You will see the four horses along with their current odds and any bets that have already been placed this round.
2

Choose your horse and bet amount

Click the horse you want to back and enter your bet amount. You can only bet on one horse per race. Once your bet is confirmed, your funds are deducted immediately.
3

Wait for the countdown

The 30-second countdown starts when the first bet of the round is placed. Countdown updates are broadcast to all players who have placed bets at every 10-second mark and during the final 5 seconds.
4

Race runs automatically

At zero, the race begins. The server plays horse gallop sounds for all bettors as the race progresses, then announces the winning horse.
5

Collect your winnings

If your horse wins, your payout is credited automatically: bet amount × horse odds multiplier. If your horse loses, your bet is forfeited.
Your horseResult
WinsReceive bet × multiplier (tax may apply)
LosesBet is lost
Placing a bet on Cometa ☄ (10 % win chance, 10× payout) with 100,000yields100,000 yields 1,000,000 if it wins. High-risk bets on this horse can be extremely rewarding — but they lose 9 out of 10 races on average.

Commands

CommandDescription
/carrerasOpens the horse racing betting GUI

Bet Limits

Default Players

Min: 100Max:100 **Max:** 100,000 per race

VIP Players

Max: $500,000
(casinoliric.bet.vip permission)

Admin Players

Max: $10,000,000
(casinoliric.bet.admin permission)

Daily Use Limits

Default Players

Up to 5 race bets per day.

VIP Players

Up to 20 race bets per day (casinoliric.uses.vip permission).
Admins with casinoliric.uses.admin have unlimited daily bets. All limits are configurable under racing.uses and racing.bet in config.yml.

Configuration Reference

racing:
  active: true
  bet:
    default:
      min: 100.0
      max: 100000.0
    ranks:
      vip:
        permission: "casinoliric.bet.vip"
        max: 500000.0
      admin:
        permission: "casinoliric.bet.admin"
        max: 10000000.0
  uses:
    default:
      max-uses-per-day: 5
    ranks:
      vip:
        permission: "casinoliric.uses.vip"
        max-uses-per-day: 20
      admin:
        permission: "casinoliric.uses.admin"
        max-uses-per-day: -1
Only one bet per player is allowed per race. If you try to place a second bet while a race countdown is active, the plugin will reject it. Wait for the current race to finish before betting again.