Permission for check balance dollars is default true.
Example: /money pay your_name 15 dollars
Permission is lite.eco.pay.dollars
Permission for pay with dollars is default true
This permission usage can be bypassed by permission
lite.eco.pay.*
lite.eco.balance.*
lite.eco.balance.* can be used for suggestion all currencies in /money bal - tabcomplete
also in usage of all currencies.
Into config was added new settings duo fix for connection into MariaDB 11.x
Added for connection driverClassName because without this settings on newer versions of MariaDB plugin can't connect to Database.
Code (YAML):
# 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