Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/noskap/kojima-bot/llms.txt

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

Kojima Bot includes three casino minigames — slots, coin flip, and roulette — all powered by a fictional chip currency that lives entirely inside the bot’s SQLite database. Chips cannot be purchased, transferred for real value, or redeemed for anything outside the server. They exist purely to give the spawn game an extra layer of progression.
Chips have no real-world value. /gamble is entertainment only.

Chip economy

Chips are stored in the rouletteBalance column of the profiles table, scoped per user per guild. Every new player starts with 100 chips. Chips can be earned by catching spawns and can be wagered in any of the three casino games. The maximum single bet allowed is 500,000 chips. Check your current balance with /gamble balance. Your balance persists across sessions and server restarts — it is written to SQLite immediately after each game result.

Slots (/gamble slots)

The slots machine spins three independent reels, each choosing uniformly at random from five symbols. A triple match pays out bet × multiplier chips. Any non-matching result loses the bet entirely.
SymbolEmojiTriple Multiplier
Cherry🍒×5
Lemon🍋×8
Bell🔔×12
Star×22
Diamond💎×45
Triple 💎 Diamond is the jackpot and is the only result that triggers the slots_whale achievement. Because each reel is independent and uniform across five symbols, the probability of any specific triple is 1 in 125 (0.8%), and the diamond jackpot specifically is 1 in 125 as well.

Coin flip (/gamble flip)

Call heads or tails before the flip. The outcome is a 50/50 coin toss.
  • Win — your bet is doubled (you receive back your stake plus the same amount in profit, net +bet).
  • Loss — your stake is removed from your balance.
Ten cumulative coin flips (across all sessions) unlock the Revolver Hobbyist achievement.

Roulette (/gamble roulette)

European-style roulette with numbers 0–36. Place a bet on a color: green, red, or black. The bot spins a number and compares its color to your pick.
ColorPayoutNumbers
Green×150
Red×21, 3, 5, 7, 9, 12, 14, 16, 18, 19, 21, 23, 25, 27, 30, 32, 34, 36
Black×2All remaining non-zero numbers not in the red set
The 18 red numbers are: 1, 3, 5, 7, 9, 12, 14, 16, 18, 19, 21, 23, 25, 27, 30, 32, 34, 36. Everything else (apart from 0) is black. Betting green is a long-shot with a 1-in-37 chance and a 15× payout. Winning your first roulette spin unlocks the La Li Lu Le Let It Ride achievement.
All casino results are server-side random — there are no client seeds or provably fair mechanisms.

Build docs developers (and LLMs) love