More info about plugin at Plugin Github Page
Support me by buying my
Patreon
Plugin for managing a large number of currencies for each player. Recording methods: MySQL and SQLite. Plugin supports floating-point currency recording.
Compatibility
- Tested Versions: 1.8.x, 1.20.1
- Spigot 1.8-1.20.1
- Paper 1.8-1.20.1
Commands
Code (Text):
- /hardcurrency help - Shows help page
- /hardcurrency show - Displays all your currencies
- /hardcurrency show <Currency> - Displays specific currency
- /hardcurrency show <Currency> <Player> - Displays specific currency of specific player
- /hardcurrency currency <add/remove> <Currency> - Add or Remove currency
- /hardcurrency currency list - Lists all currencies
- /hardcurrency player <add/set/remove> <Currency> <Player> <Amount> - Manages player Currency values
Permissions
Code (Text):
- /hardcurrency help - hardcurrency.help
- /hardcurrency show - hardcurrency.show.<Currency>
- /hardcurrency show <Currency> - hardcurrency.show.<Currency>
- /hardcurrency show <Currency> <Player> - hardcurrency.show.player
- /hardcurrency currency add <Currency> - hardcurrency.currency.add
- /hardcurrency currency remove <Currency> - hardcurrency.currency.remove
- /hardcurrency currency list - hardcurrency.currency.list
- /hardcurrency player add <Currency> <Player> <Amount> - hardcurrency.player.add
- /hardcurrency player set <Currency> <Player> <Amount> - hardcurrency.player.set
- /hardcurrency player remove <Currency> <Player> <Amount>- hardcurrency.player.remove
PlaceholderAPI
Placeholders to use in other plugins using PlaceholderAPI
Placeholders
- %hardcurrency_<Currency>% - Displays the value of a given player currency
Storage
MySQL or SQLite Support
Storage Config:
Code (YAML):
database
:
# Type of database SQLite or MySQL
type
: SQLite
# MySQL settings only used when type is MySQL
mysql
:
# MySQL database host
host
: localhost
# MySQL database port (default 3306)
port
: 3306
# MySQL database database where create tables
database
: database
# MySQL database username to log in
username
: root
# MySQL database password to log in
password
: ''
# MySQL connection settings
connSettings
: characterEncoding=UTF-8&useSSL=false
# SQLite settings only used when type is SQLite
sqlite
:
# Path to SQLite database file
path
: database.db