指令 | 效果 | 权限 |
/gilc reload | 重载配置文件 | OP可以使用 |
配置文件:
- # 识别名,不要重复
- 天堂的痊愈药剂:
- #==================================================
- # 检测的lore,玩家右键物品时检测到即触发指令。
- lore: '&b右键使用: &a立即恢复满生命值与饥饿值'
- # =================================================
- # 触发后由玩家执行的指令
- # 以 [OP]: 开头将会使指令以最高权限发出
- # 支持变量 %player% 替换为使用者名字
- playerCMD:
- - '[OP]:heal'
- #==================================================
- # 触发后由控制台执行的指令
- # 支持变量 %player% 替换为使用者名字
- consoleCMD:
- - 'tell %player% &a&l道具使用成功。'
- - 'give %player% 374 1'
- #==================================================
- # 物品模块,
- itemUtil:
- # 需要多少个堆叠在一起才能使用
- requiredAmount: 2
- # 数量不足尝试使用时的提示信息
- amountMsg: '&c需要同时持有&e2&c个此物品时才能使用'
- # 使用成功后是否扣除所需要的数量的物品
- takeItem: true
- #==================================================
- # 冷却模块,启用后,物品在成功使用后将在一段时间内无法再次使用
- cooldownUtil:
- # 是否启用冷却模块
- useCooldown: false
- # 冷却时间,单位为毫秒
- cooldown: 10000
- # 尝试使用处于冷却时间中的物品时是否发送消息
- sendMsg: true
- # 尝试使用处于冷却时间中的物品时的提示信息,变量 %less% 替换为剩余冷却时间
- cooldownMsg: '&c此道具处于冷却中,剩余时间&e%less%&c。'
- #==================================================
- # 权限模块
- # 启用后,使用物品前将会检测玩家是否拥有指定权限,若没有,则取消使用。
- permissionUtil:
- # 是否启用权限模块
- usePermission: true
- permission: 'use.天堂的痊愈药剂'
- sendMsg: true
- permissionMsg: '&c使用此物品需要到达&e七级&c,请升级后再尝试使用'
- 雷神权杖:
- lore: '&b右键使用: &a在准心处召唤一道闪电&7[冷却: 10s]'
- playerCMD:
- - '[OP]:say &b&l感受雷霆吧!!!'
- - '[OP]:lightning'
- consoleCMD: []
- itemUtil:
- requiredAmount: 1
- takeItem: false
- cooldownUtil:
- useCooldown: true
- cooldown: 1000000
- sendMsg: true
- cooldownMsg: '&f&l[&d&l雷神权杖&f&l]&c法杖正处于冷却中,剩余时间&e%less%&c。'
- permissionUtil:
- usePermission: true
- permission: 'use.雷神权杖'
- sendMsg: true
- permissionMsg: '&c只有&b&l雷电法王&c能使用此物品。'