- ◆ 支持核心
- Spigot
- ◆ 插件前置
- PlaceholderAPI,Vault[可选]
图片演示
PlaceholderAPI
PlaceholderAPI
%coins_balance% | 显示玩家硬币余额 |
指令与权限
指令 | 权限 | 描述 |
---|---|---|
嘿嘿 | coins.admin.* | 全部权限 |
/coins | 无 | 指令帮助 |
/coins me | coins.user | 查询硬币余额,权限默认已分配 |
/coins add 玩家 数量 | coins.admin.add | 给玩家硬币 |
/coins remove 玩家 数量 | coins.admin.take | 扣除玩家硬币 |
/coins set 玩家 数量 | coins.admin.set | 设置玩家硬币数量 |
/coins pay 玩家 数量 | coins.admin.pay | 向玩家转账,权限默认已分配。 |
/coins reload | coins.admin.reload | 插件重载 |
配置文件
config.yml
YAML:
#语言文件
#en英文,zh_cn中文
#Language files
#en English、zh_cn Chinese
language: en
#prefix
#前缀
Prefix: '&6 Coins >>'
data:
#Data storage methods, sqlite and MySQL, if you use sqlite, you do not need to configure the following
#(数据储存方式,sqlite与MySQL,若使用sqlite的话以下无需配置)
method: sqlite
#Database connection address(数据库连接地址)
address: '127.0.0.1'
#Database port(数据库端口)
port: 3306
#Database name(数据库名)
database: 'coins'
#Database user name(数据库用户名)
username: 'root'
#Database password(数据库密码)
password: '123456'
#Database useSSL(数据库useSSL)
useSSL: false
#Connection pooling(连接池)
HikariCP:
#Connection timeout Default value: 30000 (30 seconds)(连接超时时间 默认值:30000(30秒))
connectionTimeout: 30000
#Minimum number of idle connections(最小空闲连接数)
minimumIdle: 10
#The maximum size allowed for the pool, including idle and in-use connections(池允许达到的最大大小,包括空闲和正在使用的连接)
maximumPoolSize: 50
#Here you can enable Vault to make this plugin manage all the Vault transactions.
Vault:
#Enable or not
#是否启用
enable: false
# Names used by vault for the currency.
# vault为货币使用的名称。
singular-name: 'Coins'
plural-name: 'Coins'
#Set up(设置)
Settings:
#Set so the player's initial balance(设置所以玩家初始余额)
Initial_balance: 0
开源地址