For the complete documentation index, see llms.txt. This page is also available as Markdown.

Economy

The economy system lets your members earn, gamble, and spend coins in your server. You can customize rewards, games, fishing spots, and even run a full server shop with ranks, boosters, and items.

Core Settings

Administrator Roles

  • Defines who can use /economy admin commands.

  • Replace "ROLE_ID" with the actual role IDs.

administrator: ["ROLE_ID"]

Interest System

Earn passive income on money stored in the bank.

  • defaultInterestRate β†’ Daily % (0.05 = 5%)

  • interestInterval β†’ When interest is paid (24h format)

  • maxInterestEarning β†’ Cap to prevent farming

Example:

defaultInterestRate: 0.05   # 5% daily
interestInterval: ["10:00"] # Pays out at 10:00 AM
maxInterestEarning: 100000

Income Commands

Your server’s main money-makers:

  • Daily β†’ Free daily coins (scales with streaks).

  • Work β†’ Earn coins for "working".

  • Beg β†’ Small random coins.

  • Crime β†’ Risk/reward: sometimes profit, sometimes loss.

  • Rob β†’ Steal from others (if they have enough balance).

Example:


Fishing System

A fun minigame with multiple fishing spots. Each location has:

  • Cost β†’ Pay to fish.

  • Fish list β†’ Different fish, drop chances, and rewards.

  • Higher cost = better fish.

Example (ocean spot):

πŸ‘‰ You can add as many custom fishing spots as you like!


Gambling Games

Members can risk their coins in fun games:

  • Blackjack – 1:1 payout

  • Roulette – Bet on red/black/green

  • Slots – Multiplier rewards

  • Coinflip & Roll – Simple luck-based games

Example (Roulette):


Store System

Your custom shop where members spend their coins.

Categories

  • Ranks β†’ Permanent Discord roles

  • Boosters β†’ Temporary buffs

  • Items β†’ Permanent upgrades or consumables

  • Equipment β†’ Tools & gear (like fishing rods)

Examples

Ranks

Boosters

Items

Equipment


Store Embed Customization

Make your shop look polished with placeholders:

  • {itemCount} β†’ Item number

  • {item} β†’ Item name

  • {price} β†’ Item price

  • {description} β†’ Item description

  • {pageCurrent}/{pageMax} β†’ Pagination

Last updated