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:

Daily:
  baseAmount: 200
  increasePerDay: 50
  maxAmount: 1000

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):

ocean:
  cost: 300
  fish:
    - name: "Mackerel"
      chance: 0.22
      minReward: 200
      maxReward: 400
    - name: "Cod"
      chance: 0.20
      minReward: 250
      maxReward: 500

πŸ‘‰ 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):

Roulette:
  winMultiplier:
    red: 2
    black: 2
    green: 14

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

Ranks:
  1:
    Name: "Supporter Rank"
    Description: "Gain the Supporter role in our server"
    Price: "10000"
    RoleID: ["ROLE_ID"]
    Limit: "1"

Boosters

Boosters:
  1:
    Name: "Money Booster"
    Description: "Earn 1.5x coins for 24h"
    Price: "15000"
    Booster: "Money"
    Multiplier: "1.5"
    Duration: "24h"

Items

Items:
  1:
    Name: "Bank Interest 0.3%"
    Description: "Increase bank interest rate"
    Price: "10000"
    Type: "Interest"
    Interest: "0.3"
    Limit: "1"

Equipment

Equipment:
  1:
    Name: "Basic Fishing Rod"
    Description: "A simple rod for beginners"
    Price: "1000"
    Type: "FishingRod"
    CatchBonus: 1.1
    LuckBonus: 1.05

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