_DIM_
本帖最后由 1582952890 于 2017-9-14 22:29 编辑


这款插件可以让某条指令在指定的世界出现延时效果
并且效果都是可以自己自定义
此插件是等待一段时间后再自动帮你执行指令
因此如果ess有设定延时的话会叠加,需自行关闭

特性
支持所有插件的所有命令
完整的声音效果
简洁不臃肿
完全可配置
给某条指令增加花费
给某条指令增加延时
还能禁止某个世界某个指令,然后指定某些玩家能用,方法见1楼

原帖截图

指令&权限
/commanddelay reload - 重载插件

Admin
commanddelay.reload - 重载插件的权限(OP默认没有- -)

Player
commanddelay.bypass.<类别> - 无需等待&无需花费的权限
(类别的名字在配置文件里面)

配置文件
  1. # CommandDelay config.yml
  2. # 搬运工——酷车手BB弹(退休了,有事别找我= =)
  3. #=====-----=====-----=====-----[      类别      ]-----=====-----=====-----=====#
  4. # Each category must have a unique identifier. For example: essentials or factions.
  5. # Each category has separate delay, list of blacklisted worlds, cost, and commands.
  6. # 如果 blacklist:false ,则worlds:后面代表的是白名单.(白名单就是只有这个世界生效)
  7. #
  8. # For example, the Essentials commands below have 5 second delay and cost of 0,
  9. # except in the listed worlds.
  10. #
  11. # To avoid exploits, list the commands with and without plugin prefaces.

  12. category:
  13. # 例如:
  14. #   delay: 5  //延时
  15. #   cost: 500  //花费
  16. #   commands:  //指令
  17. #   - "spawn"
  18.   free:
  19.     delay: 3600
  20.     cost: 0
  21.     commands:
  22.     - "kit free"
  23.   essentials:
  24.     delay: 3
  25.     cost: 0
  26.     blacklist: true
  27.     worlds:
  28.     - "233"
  29.     commands:
  30.     - "back"
  31.     - "home"
  32.     - "jump"
  33.     - "spawn"
  34.     - "top"
  35.     - "tpa"
  36.     - "tpaall"
  37.     - "tphere"
  38.     - "tpo"
  39.     - "tpohere"
  40.     - "tppos"
  41.     - "warp"
  42.     - "world"
  43.     - "essentials:back"
  44.     - "essentials:home"
  45.     - "essentials:jump"
  46.     - "essentials:spawn"
  47.     - "essentials:top"
  48.     - "essentials:tpa"
  49.     - "essentials:tpaall"
  50.     - "essentials:tphere"
  51.     - "essentials:tpo"
  52.     - "essentials:tpohere"
  53.     - "essentials:tppos"
  54.     - "essentials:warp"
  55.     - "essentials:world"

  56. #=====-----=====-----=====-----[    取消指令    ]-----=====-----=====-----=====#
  57. # 在等待期间如果玩家执行了以下操作,就会取消执行
  58. # listed here, if the delay_cancel_action is set to true.
  59. delay_cancel_interact: false
  60. delay_cancel_move: true
  61. delay_cancel_jump: false
  62. delay_cancel_damage: true
  63. delay_cancel_damaged: true
  64. delay_cancel_break: true
  65. delay_cancel_place: true
  66. delay_cancel_chat: false
  67. delay_cancel_command: true

  68. #=====-----=====-----=====-----[  TitleBar 消息   ]-----=====-----=====-----=====#
  69. message_titlebar_enabled: true
  70. message_titlebar_delaying: "{themecolor}准备中..."
  71. message_titlebar_delaying_subtitle: "&e请站在那等待 &6{left} &e秒"
  72. message_titlebar_delaying_canceled: "{themecolor}&l执行指令 /{cmd} 终止"
  73. message_titlebar_delaying_canceled_subtitle: "{flatcolor}请不要做任何事"
  74. message_titlebar_dispatched: "{themecolor}&l执行指令 /{cmd} 成功"
  75. message_titlebar_dispatched_subtitle: "&6玩的开心 &f{player}"

  76. #=====-----=====-----=====-----[  ActionBar 消息  ]-----=====-----=====-----=====#
  77. message_actionbar_enabled: true
  78. message_actionbar_cooldown: "{themecolor}{left} 秒后开始"
  79. message_actionbar_dispatched: "&l祝您旅途愉快~"
  80. message_actionbar_reverse: true
  81. message_actionbar_symbol: "█"
  82. #The style of bar Fill

  83. #=====-----=====-----=====-----[     聊天消息     ]-----=====-----=====-----=====#
  84. message_chat_enabled: false
  85. message_chat_delaying: "{flatcolor}Preparing..."
  86. message_chat_delaying_subtitle: "&ePlease Stay For &6{left} &eSecond"
  87. message_chat_delaying_canceled: "{themecolor}&lCommand /{cmd} Aborted"
  88. message_chat_dispatched: "{themecolor}&lCommand /{cmd} Success"

  89. #=====-----=====-----=====-----[       信息       ]-----=====-----=====-----=====#
  90. message_prefix: "&8[&d延时系统&8]"
  91. message_command_nomoney: "&c你不够钱执行这条指令 = ="
  92. message_command_reload: "&6配置重载成功"
  93. message_command_nopermission: "你没有 &8[&f{perm}&8] &c权限 !"

  94. #=====-----=====-----=====-----[     占位符     ]-----=====-----=====-----=====#
  95. # {themecolor} would replaced with Bright random color
  96. # {flatcolor} would replaced with Darker random color
  97. # {player} would replaced with Player displayname
  98. # {left} would replaced by remaining second to wait
  99. # {x} would replaced by player current X coord location
  100. # {y} would replaced by player current Y coord location
  101. # {z} would replaced by player current Z coord location
  102. # {cmd} would replaced by player current delayed command

  103. #=====-----=====-----=====-----[     颜色配方    ]-----=====-----=====-----=====#
  104. # 自定义占位符的颜色.如果有多种颜色,则每秒换一个
  105. themecolor:
  106. - "&a"
  107. - "&b"
  108. - "&c"
  109. - "&e"

  110. flatcolor:
  111. - "&f"

  112. #=====-----=====-----=====-----[     其他功能    ]-----=====-----=====-----=====#
  113. use_hologram: true
  114. use_particle: true

  115. #=====-----=====-----=====-----[     声音设置     ]-----=====-----=====-----=====#
  116. sound_error: "ENTITY_BLAZE_DEATH"
  117. sound_tick: "UI_BUTTON_CLICK"
  118. sound_success: "ENTITY_ENDERMEN_TELEPORT"

  119. #=====-----=====-----=====-----[     粒子设置     ]-----=====-----=====-----=====#
  120. particle_main: "SNOW_SHOVEL"
  121. particle_second: "FIREWORKS_SPARK"
复制代码

自己截的两张图


下载地址:
[指令延时]CommandDelay.jar (66.52 KB, 下载次数: 289)
config.yml (4.63 KB, 下载次数: 258)

最后,若插件对你有帮助的话,麻烦赏点人气吧~谢谢

www847343
感谢楼主搬运

栀栀太坏了
前排露脸感谢楼主搬运!!!!!!我要露脸!!!!!!

_DIM_
本帖最后由 酷车手BB弹 于 2017-8-22 18:51 编辑

这插件有个窍门
有些腐竹可能想禁用某条指令,但是又想指定某个世界,那个指令本身又不需要权限
那就得另外去找其他插件,其实也可以用这个插件
自己新建一个组
然后比如我不想玩家在233这个世界使用/fuck,则可以酱紫

  fuck:
    delay: 9999
    cost: 999999999
    blacklist: false
    worlds:
    - "233"
    commands:
    - "fuck"

我就不信还有玩家能用这指令

如果我想让VIP玩家能用这个指令
那就给他这个权限就好
commanddelay.bypass.fuck


1207741285
不要把Ess插件的延时关掉吗?不会冲突?

_DIM_
1207741285 发表于 2017-8-22 18:51
不要把Ess插件的延时关掉吗?不会冲突?

是啊,要关掉

a2055799522
好样的,终于有人搬运汉化了

_DIM_
a2055799522 发表于 2017-8-22 19:01
好样的,终于有人搬运汉化了

结果下载次数是0.。。。。。。。

芊雨
咦。lz 刚刚安装测试了一下,插件不加载啊  1.8版本

1207741285

所以你不要在帖子里标注一下吗

_DIM_
芊雨 发表于 2017-8-22 20:11
咦。lz 刚刚安装测试了一下,插件不加载啊  1.8版本

检查前置

大海Sea
这个插件无敌了,正愁监狱空岛输入/is马上就回家呢

Cojie_
ess哪怎么关掉?

_宝藏男孩
比站内有些单一的延迟效果好功能多

2458620810
粒子特效怎么改

496828324
很不错的插件顶一下

360g
你这个插件有个BUG

360g
会使其他指令延迟许久才能得到响应

3417522866
很好的插件,顶一下

Remooonant
小白膜拜一下

qiupiu
酷车手BB弹 发表于 2017-8-22 18:47
这插件有个窍门
有些腐竹可能想禁用某条指令,但是又想指定某个世界,那个指令本身又不需要权限
那就得另外 ...

可以类似于禁止一系列指令么.music server *

零度_Cynric
如何转码插件的汉化 我这VPS用着 全是乱码 需要转个ANSI 建议插件有语言文件

夜光梦
插件很好用,但我发现由gui界面发出的命令会直接跳过这个插件的检测,比如地标列表,菜单里的传送

夜光梦
玩家金币为负的时候,不能使用有cost的指令

UnCreateds
能修改lore吗

剑帝苍默强
插件很好

娱乐c
感谢楼主分享

细雨清风
正需要这种插件 感谢分享 支持

无感丶
我看看试试去,嘿嘿嘿

yiqingjue
MCBBS有你更精彩~