xiaohe_ovo
速度找一个输入一个指令执行很多指令

或者

一条指令能执行很多指令的插件

感谢各位大佬



是控控吗
https://www.spigotmc.org/resources/xcommands.113183/

xiaohe_ovo
是控控吗 发表于 2023-12-31 23:22
https://www.spigotmc.org/resources/xcommands.113183/

有无站内的

是控控吗

[综合][未知之域]GuoGroupCommand —— 单条指令发起多条指令,指令支持延时[全版本]
https://www.mcbbs.net/thread-683451-1-1.html
(出处: Minecraft(我的世界)中文论坛)

名副其实

温馨提示: 如果你很遗憾没能选中我作为最佳答案,请你尽量不要给我额外的人气和金粒。

这插件已经简单了
xxx.yml 下:
  1. enabled: true
  2. name: '命令'

  3. # effects whether your text will be processed as json or just as a string
  4. json: true

  5. # permission node for your command, please set to 'none' if you dont need one
  6. permission: '权限节点'

  7. # how often anyone can use this command (in milliseconds)
  8. globalCooldown: 0
  9. # 全局冷却,用法参照果式命令

  10. # how often can someone use this command (in milliseconds)
  11. cooldown: 10000
  12. # 单独冷却,用法参照果式命令

  13. # ban or only allow this command in certain worlds
  14. worldWhiteList:
  15. - "world"
  16. # 只允许命令在上述的世界执行
  17. worldBlackList: []
  18. # 禁止命令在上述的世界执行

  19. subcommands:
  20.   default:
  21.   # 保留词,此即为不带子参数时执行的操作
  22.     text: []
  23.     # 设置命令执行之后发送的消息
  24.     commands: []
  25.     # 设置命令执行之后触发的多条命令
  26.     conditions: []
  27.     # 设置命令执行所需的条件
复制代码

第一页 上一页 下一页 最后一页