Welcome to the Hangar Open Beta. Please report any issue you encounter on GitHub!
Avatar for EncryptSL

EconomyPlugin, Economy, Money, LiteEco

Report LiteEco?

Documentation

Permissions

Placeholders

Translations

Recommended for function is PaperSpigot. Without this server software plugin no works because using paper api.

Requirements

Plugin support PlaceholderAPI

Conflict with plugins

  • Towny

  • Towny generating fake uuids.

  • This can broke LiteEco.

  • Treasury

  • Api is included but is very unstable.

Commands & Permissions

Player

# Permission for all player commands
lite.eco.player

# Permission for suggestions names in commands.
lite.eco.suggestion.players

# Main player command for LiteEco.
/money:
  Permission: lite.eco.money

# Shows commands for players.
/money help:
  Permission: lite.eco.help

# Check your account balance or the balance of another player.
/money bal [player] [currency]:
  Permission: lite.eco.balance

# Shows the richest players.
/money top [page] [currency]:
  Permission: lite.eco.top

# Send your money to another player.
/money pay <player> <amount> [currency]:
  Permission: lite.eco.pay

Admin

 # Permission for all admin commands.
lite.eco.admin

 # Main admin command for LiteEco.
/eco:
  Permission: lite.eco.admin.eco

# Shows available commands for admins.
/eco help:
  Permission: lite.eco.admin.help

# Add money to a player.
/eco add <player> <amount> [currency]:
  Permission: lite.eco.admin.add

# Add money to everyone.
/eco gadd <amount>: # Removed in version 1.4.4
/eco global add <amount> [currency]: # New since 1.4.9-SNAPSHOT
  Permission: lite.eco.admin.gadd
  Permission: lite.eco.admin.global.add # New since 1.4.9

# Set a fixed money amount for a player.
/eco set <player> <amount> [currency]:
  Permission: lite.eco.admin.set

# Set a fixed money amount for everyone.
/eco gset <amount>: # Removed in version 1.4.4
/eco global set <amount> [currency]: New since 1.4.9
  Permission: lite.eco.admin.gset
  Permission: lite.eco.admin.global.set # New since 1.4.9

# Withdraw money from a player.
/eco remove <player> <amount>: # Removed in version 1.4.4
/eco withdraw <player> <amount> [currency]: # New since 1.4.9
  Permission: lite.eco.admin.remove
  Permission: lite.eco.admin.withdraw # New since 1.4.4

# Withdraw money from everyone.
/eco gremove <amount>: # Removed in version 1.4.4
/eco global remove <amount> [currency]: # New since 1.4.9
  Permission: lite.eco.admin.gremove
  Permission: lite.eco.admin.global.withdraw # New since 1.4.9

# This command remove player account with balance and his cache from database.
/eco delete <account> [currency]
  Permission: lite.eco.admin.delete

# Monolog - Information about payment, withdraw, deposit etc...
# New Since 1.4.5
/eco monolog [page] [player]:
  Permission: lite.eco.admin.monolog

# Switch the translation language.
/eco lang [LANG_KEY]:
  Permission: lite.eco.admin.lang

# Purge data that meet certain requirements.
/eco purge <argument> [currency]:
  Permission: lite.eco.admin.purge

# Migrate the database between SQL or CSV.
/eco migration <argument>:
  Permission: lite.eco.admin.migration

# Convert economy from other plugin to LiteEco
# But not to other plugin.
# Since 1.4.2 and above.
/eco convert <economy>:
  Permission: lite.eco.admin.convert

# Create non player accounts and save into database.
/eco debug create accounts <amount>:
  Permission: lite.eco.debug.create.accounts

# Reload the configuration.
/eco reload:
  Permission: lite.eco.admin.reload

Configuration & File

config.yml
#Official settings for this plugin.
plugin:
  # Translations list of supported locales below
  # https://github.com/EncryptSL/LiteEco/blob/main/src/main/kotlin/encryptsl/cekuj/net/api/enums/LangKey.kt
  translation: EN_US
  # Plugin prefix
  prefix: "<dark_gray>[<green>Eco<dark_gray>] <dark_green>»</dark_gray>"
  # Enable or disable Metrics
  metrics: true
  # Settings for modifiable players suggestion.
  # Enabled: Offline Players Suggestion..
  # Disabled: Online Players Suggestion...
  offline-suggestion-players: true

economy:
  currencies: # Since 1.4.8 to newer versions
    # Don't change this currency because this is implemented for vault....
    # Key of currencies is name of table please don't change this value if you don't want to lose data.
    dollars:
      currency_name: dollars
      currency_plural_name: dollars
      currency_singular_name: dollar
      # Currency Format
      currency_format: '$ <money>'
      # This amount is granted to players who don't have an existing account in the database.
      starting_balance: 30
      # This amount is checked when player is above allowed limit
      balance_limit: 1000000
      # Enabled or disable balance limit, disabled check mean fully for paid amounts by player, given/set by admins.
      balance_limit_check: true
      # Convert large currency values into a more compact format.
      compact_display: false

    # Example of other currencies
    # Don't change this currency because this is implemented for vault....
    # Key of currencies is name of table please don't change this value if you don't want to lose data.
    # credits:
        # currency_name: credits
        # currency_plural_name: credits
        # currency_singular_name: credit
        # Currency Format
        # currency_format: '€ <money>'
        # # This amount is granted to players who don't have an existing account in the database.
        # starting_balance: 30
        # # This amount is checked when player is above allowed limit
        # balance_limit: 1000000
        # # Enabled or disable balance limit, disabled check mean fully for paid amounts by player, given/set by admins.
        # balance_limit_check: true
        # # Convert large currency values into a more compact format.
        # compact_display: false

  # Enable logging about economies activities add, set, withdraw, pay money.
  # Command /eco monolog [player]
  monolog_activity: true

formatting:
  # Currency value format
  currency_pattern: "#,##0.00"
  # Compact value format
  compacted_pattern: "#,##0.0##"
  # Locale symbol format
  currency_locale: en-US

  placeholders:
    empty-name: "EMPTY"

# These settings toggle messages.
messages:
  global:
    notify_add: true
    notify_withdraw: true
    notify_set: true
  target:
    notify_add: true
    notify_withdraw: true
    notify_set: true

# Settings for Database or SQLite connection.
database:
  # For SQLite, the path to the SQLite database file: jdbc:sqlite:plugins/LiteEco/database.db
  # For MySQL, the JDBC connection URL in the format: jdbc:mysql://your_host:port/name_of_database
  connection:
    # Settings for JDBC_HOST
    jdbc_url: "jdbc:sqlite:plugins/LiteEco/database.db"
    # The username of the user to connect to your database (MySQL only).
    username: user_name
    # The password of the user to connect to your database (MySQL only).
    password: password

  # You can enable sql-plugin-logger for some problems with database...
  sql-plugin-logger: false

Videos

Germany

https://bstats.org/signatures/bukkit/liteeco.svg

Information

CategoryEconomy
Published onMarch 28, 2023
LicenseUnspecified
Downloads174
Stars3
Watchers1

Pinned Versions

Members