For users of LiteEco Plugin Dear users, I'm back after a break, I apologise to everyone who used my plugin.
I had to deal with some personal issues and unfortunately the time did not allow me to continue to be fully interested in this plugin.
I started this project with the vision of making it simple and lightweight, unfortunately the constant requests and the constant same user errors when setting up the plugin drove me crazy.
Mostly I did it in my spare time and mostly in the evenings.
Unfortunately this is no longer sustainable. This project and fixing sometimes stupid bugs is very time consuming. Nevertheless I decided to keep it free, but with limited support and small updates with big changes.
Don't worry, support will remain and I will always find time for serious problems.
Recommended for function is PaperSpigot. Plugin doesn't have support for Proxy Server !!! Without this server software plugin no works because using paper api.
Default is allowed dollars others require permission or bypass by lite.eco.balance.*
/balance or bal
Is proxy command for /money bal.
/money top
Permission: lite.eco.top
Show richest players
/money pay <username> <amount> (currency)
Permission: lite.eco.pay
This command pay to target.
Permisison lite.eco.pay.(currency)
Allow your players pay with selected currency
Default is allowed dollars others require permission or bypass by lite.eco.pay.*
Admin
/eco help
Permission: lite.eco.admin.help
Shows commands for admins.
/eco add <username> <amount> (currency)
Permission: lite.eco.admin.add
This command give money to player.
/eco global add <amount> (currency)
Permission: lite.eco.admin.global.add
This command give to all offline and online accounts money.
/eco set <username> <amount> (currency)
Permission: lite.eco.admin.set
This command set money to player
/eco global set <amount> (currency)
Permission: lite.eco.admin.global.set
This command set to all offline and online accounts fixed money.
/eco withdraw <username> <amount> (currency)
Permission: lite.eco.admin.withdraw
This command remove from player account money
/eco global withdraw <amount> (currency)
Permission: lite.eco.admin.global.withdraw
This command remove from all offline and online accounts money.
/eco delete <account> (currency)
Permission: lite.eco.admin.delete
This command remove player account with balance and his cache.
/eco monolog [page] [player]:
Permission: lite.eco.admin.monolog
Monolog - Information about payment, withdraw, deposit etc...
/eco lang [lang]
Permission: lite.eco.admin.lang
This command switch language file for complete plugin.
/eco purge <argument>
Permission: lite.eco.admin.purge
This command purge data.
/eco migration <argument>
Permission: lite.eco.admin.migration
This command export database data to file SQL or CSV.
/eco convert <argument>
Permission: lite.eco.admin.convert
This command convert economy from other plugin to LiteEco.
/eco debug create accounts <amount>
Permission lite.eco.debug.create.accounts
This command create fake accounts and save into database.
/eco reload
Permission: lite.eco.admin.reload
This reload configuration with current lang file.
Configuration & File
Code (YAML):
#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"
# 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 # For MariaDB, the JDBC connection URL in the format: jdbc:mariadb://your_host:port/name_of_database
# Drivers: # # MariaDB - org.mariadb.jdbc.Driver (https://youtrack.jetbrains.com/issue/EXPOSED-170) # MySQL - com.mysql.cj.jdbc.Driver Don't use if you have MariaDB version 11.X and newer. # SQL - org.sqlite.JDBC connection: # Settings for DriverClassName driverClassName: "org.sqlite.JDBC" # 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