Commands

Complete list of player and administrator commands.

Player Commands

CommandAliasesDescription
/balance/walletShows your current wallet balance
/store/itemshopOpens the in-game shop GUI
/bonus/daily-bonusClaims your daily bonus

/balance

Displays your current wallet balance.

  • Permission: wallet.command.balance
  • Usage: /balance

/store

Opens the shop GUI where you can browse categories and purchase products.

  • Permission: wallet.command.store
  • Usage: /store

/bonus

Claims a random daily bonus. The bonus amount is randomly generated between the configured minimum and maximum values. You must wait for the cooldown to expire before claiming again.

  • Permission: wallet.command.bonus
  • Usage: /bonus

Administrator Commands

All admin commands are under the /walletadmin parent command (alias: /wa).

CommandDescription
/wa deposit <player> <amount>Add money to a playerโ€™s wallet
/wa withdraw <player> <amount>Remove money from a playerโ€™s wallet
/wa setbalance <player> <amount>Set a playerโ€™s balance to an exact amount
/wa balance <player>View a playerโ€™s current balance
/wa history <player>View a playerโ€™s payment history
/wa recharge <player> <amount>Deposit with recharge multiplier and notification
/wa promotionList all active promotions
/wa promotion refreshRegenerate all promotions immediately
/wa reloadReload all configuration files

/wa deposit

Deposits a specified amount into a playerโ€™s wallet.

  • Permission: wallet.command.admin.deposit
  • Usage: /wa deposit <player> <amount>

/wa withdraw

Withdraws a specified amount from a playerโ€™s wallet. Fails if the player has insufficient balance.

  • Permission: wallet.command.admin.withdraw
  • Usage: /wa withdraw <player> <amount>

/wa setbalance

Sets a playerโ€™s wallet balance to the exact specified amount.

  • Permission: wallet.command.admin.setbalance
  • Usage: /wa setbalance <player> <amount>

/wa balance

Views the current wallet balance of another player.

  • Permission: wallet.command.admin.balance
  • Usage: /wa balance <player>

/wa history

Displays the complete payment history for a player, including all deposits and withdrawals with timestamps and resulting balances.

  • Permission: wallet.command.admin.history
  • Usage: /wa history <player>

/wa recharge

Deposits money into a playerโ€™s wallet with the configured recharge multiplier applied. Also sends a broadcast notification to the server (or all servers if Redis is enabled).

  • Permission: wallet.command.admin.recharge
  • Usage: /wa recharge <player> <amount>

Tip: With a recharge multiplier of 1.5, running /wa recharge Player 100 deposits 150$ into the playerโ€™s wallet.

/wa promotion

Lists all currently active promotions, showing the discounted product and the discount percentage.

  • Permission: wallet.command.admin.promotion
  • Usage: /wa promotion

/wa promotion refresh

Immediately regenerates all promotions with new random products and discount values.

  • Permission: wallet.command.admin.promotion
  • Usage: /wa promotion refresh

/wa reload

Reloads all configuration files and UI configurations without restarting the server.

  • Permission: wallet.command.admin.reload
  • Usage: /wa reload

Permissions

PermissionDescription
wallet.command.balanceAccess to /balance command
wallet.command.storeAccess to /store command
wallet.command.bonusAccess to /bonus command
wallet.command.admin.depositAccess to /wa deposit
wallet.command.admin.withdrawAccess to /wa withdraw
wallet.command.admin.setbalanceAccess to /wa setbalance
wallet.command.admin.balanceAccess to /wa balance
wallet.command.admin.historyAccess to /wa history
wallet.command.admin.promotionAccess to /wa promotion
wallet.command.admin.reloadAccess to /wa reload
wallet.command.admin.rechargeAccess to /wa recharge