GuoItemLoreCommand——果式描述指令插件

指令 效果 权限
/gilc reload 重载配置文件 OP可以使用

配置文件:

  1. # 识别名,不要重复
  2. 天堂的痊愈药剂:
  3.   #==================================================
  4.   # 检测的lore,玩家右键物品时检测到即触发指令。
  5.   lore: '&b右键使用: &a立即恢复满生命值与饥饿值'
  6.   # =================================================
  7.   # 触发后由玩家执行的指令
  8.   # 以 [OP]: 开头将会使指令以最高权限发出
  9.   # 支持变量 %player% 替换为使用者名字
  10.   playerCMD:
  11.   - '[OP]:heal'
  12.   #==================================================
  13.   # 触发后由控制台执行的指令
  14.   # 支持变量 %player% 替换为使用者名字
  15.   consoleCMD:
  16.   - 'tell %player% &a&l道具使用成功。'
  17.   - 'give %player% 374 1'
  18.   #==================================================
  19.   # 物品模块,
  20.   itemUtil:
  21.     # 需要多少个堆叠在一起才能使用
  22.     requiredAmount: 2
  23.     # 数量不足尝试使用时的提示信息
  24.     amountMsg: '&c需要同时持有&e2&c个此物品时才能使用'
  25.     # 使用成功后是否扣除所需要的数量的物品
  26.     takeItem: true
  27.   #==================================================
  28.   # 冷却模块,启用后,物品在成功使用后将在一段时间内无法再次使用
  29.   cooldownUtil:
  30.     # 是否启用冷却模块
  31.     useCooldown: false
  32.     # 冷却时间,单位为毫秒
  33.     cooldown: 10000
  34.     # 尝试使用处于冷却时间中的物品时是否发送消息
  35.     sendMsg: true
  36.     # 尝试使用处于冷却时间中的物品时的提示信息,变量 %less% 替换为剩余冷却时间
  37.     cooldownMsg: '&c此道具处于冷却中,剩余时间&e%less%&c。'
  38.   #==================================================
  39.   # 权限模块
  40.   # 启用后,使用物品前将会检测玩家是否拥有指定权限,若没有,则取消使用。
  41.   permissionUtil:
  42.     # 是否启用权限模块
  43.     usePermission: true
  44.     permission: 'use.天堂的痊愈药剂'
  45.     sendMsg: true
  46.     permissionMsg: '&c使用此物品需要到达&e七级&c,请升级后再尝试使用'
  47. 雷神权杖:
  48.   lore: '&b右键使用: &a在准心处召唤一道闪电&7[冷却: 10s]'
  49.   playerCMD:
  50.   - '[OP]:say &b&l感受雷霆吧!!!'
  51.   - '[OP]:lightning'
  52.   consoleCMD: []
  53.   itemUtil:
  54.     requiredAmount: 1
  55.     takeItem: false
  56.   cooldownUtil:
  57.     useCooldown: true
  58.     cooldown: 1000000
  59.     sendMsg: true
  60.     cooldownMsg: '&f&l[&d&l雷神权杖&f&l]&c法杖正处于冷却中,剩余时间&e%less%&c。'
  61.   permissionUtil:
  62.     usePermission: true
  63.     permission: 'use.雷神权杖'
  64.     sendMsg: true
  65.     permissionMsg: '&c只有&b&l雷电法王&c能使用此物品。'

文件下载

路由侠

发表评论

您必须 登录 才能发表留言!