Introduction
Command Delay Is Command Overlay Plugin , it give you ability to give any command a delay and a cost to run
Please Check Out Trailer Of The Plugin Below
Dependency
Command And Permission
/commanddelay reload - Reload the plugin
Admin
commanddelay.reload - Permission to reload the plugin
Player
commanddelay.bypass.<category> - to bypass Delay and Cost
Configuration
Command Delay Is Command Overlay Plugin , it give you ability to give any command a delay and a cost to run
Please Check Out Trailer Of The Plugin Below
Dependency
- Vault (Economy And Permission Plugin)
- Java 8
- Support all command and all plugin
- Full Sound Effect
- Lightweight
- Fully Configurable
- Add Cost To Every Command
- Add Delay to Every Command
Spoiler: Screenshot
Command And Permission
/commanddelay reload - Reload the plugin
Admin
commanddelay.reload - Permission to reload the plugin
Player
commanddelay.bypass.<category> - to bypass Delay and Cost
Configuration
Spoiler: Default Config
# CommandDelay config.yml
#=====-----=====-----=====-----[ Categories ]-----=====-----=====-----=====#
# Each category must have a unique identifier. For example: essentials or factions.
# Each category has separate delay, list of blacklisted worlds, cost, and commands.
# If blacklist:false, the worlds list is treated as a whitelist.
#
# For example, the Essentials commands below have 5 second delay and cost of 0,
# except in the listed worlds.
#
# To avoid exploits, list the commands with and without plugin prefaces.
category:
# example:
# delay: 5
# cost: 500
# commands:
# - "spawn"
essentials:
delay: 5
cost: 0
blacklist: true
worlds:
- "world"
commands:
- "essentials:back"
- "essentials:home"
- "essentials:jump"
- "essentials:spawn"
- "essentials:top"
- "essentials:tpa"
- "essentials:tpaall"
- "essentials:tphere"
- "essentials:tpo"
- "essentials:tpohere"
- "essentials:tppos"
- "essentials:warp"
- "essentials:world"
- "back"
- "home"
- "jump"
- "spawn"
- "top"
- "tpa"
- "tpaall"
- "tphere"
- "tpo"
- "tpohere"
- "tppos"
- "warp"
- "world"
#=====-----=====-----=====-----[ Command Cancel ]-----=====-----=====-----=====#
# The delayed command will be cancelled if the player executes one of the actions
# listed here, if the delay_cancel_action is set to true.
delay_cancel_interact: true
delay_cancel_move: true
delay_cancel_jump: false
delay_cancel_damage: true
delay_cancel_damaged: true
delay_cancel_break: true
delay_cancel_place: true
delay_cancel_chat: true
delay_cancel_command: true
#=====-----=====-----=====-----[ TitleBar Messages ]-----=====-----=====-----=====#
message_titlebar_enabled: true
message_titlebar_delaying: "{themecolor}Preparing..."
message_titlebar_delaying_subtitle: "&ePlease Stay For &6{left} &eSecond"
message_titlebar_delaying_canceled: "{themecolor}&lCommand /{cmd} Aborted"
message_titlebar_delaying_canceled_subtitle: "{flatcolor}Please Don't Do Anything"
message_titlebar_dispatched: "{themecolor}&lCommand /{cmd} Success"
message_titlebar_dispatched_subtitle: "&6Enjoy Your Day &f{player}"
#=====-----=====-----=====-----[ ActionBar Messages ]-----=====-----=====-----=====#
message_actionbar_enabled: true
message_actionbar_cooldown: "{themecolor}{left} Seconds Left to Command"
message_actionbar_dispatched: "&lThank's For Playing On This Server"
message_actionbar_reverse: true
message_actionbar_symbol: "���"
#The style of bar Fill
#=====-----=====-----=====-----[ Chat Messages ]-----=====-----=====-----=====#
message_chat_enabled: false
message_chat_delaying: "{flatcolor}Preparing..."
message_chat_delaying_subtitle: "&ePlease Stay For &6{left} &eSecond"
message_chat_delaying_canceled: "{themecolor}&lCommand /{cmd} Aborted"
message_chat_dispatched: "{themecolor}&lCommand /{cmd} Success"
#=====-----=====-----=====-----[ Messages ]-----=====-----=====-----=====#
message_prefix: "&8[&dCommandDelay&8]"
message_command_nomoney: "&cYou Don't Have Enough Money"
message_command_reload: "&6Config Successfully Reloaded"
message_command_nopermission: "You Don't Have &8[&f{perm}&8] &cPermission !"
#=====-----=====-----=====-----[ Placeholders ]-----=====-----=====-----=====#
# {themecolor} would replaced with Bright random color
# {flatcolor} would replaced with Darker random color
# {player} would replaced with Player displayname
# {left} would replaced by remaining second to wait
# {x} would replaced by player current X coord location
# {y} would replaced by player current Y coord location
# {z} would replaced by player current Z coord location
# {cmd} would replaced by player current delayed command
#=====-----=====-----=====-----[ Colors Schemes ]-----=====-----=====-----=====#
# The placeholder color schemes are defined here. If multiple colors are listed, they
# will be rotated every second.
themecolor:
- "&a"
- "&b"
- "&c"
- "&e"
flatcolor:
- "&f"
#=====-----=====-----=====-----[ Other Feature ]-----=====-----=====-----=====#
use_hologram: true
use_particle: true
#=====-----=====-----=====-----[ Sound Config ]-----=====-----=====-----=====#
sound_error: "ENTITY_BLAZE_DEATH"
sound_tick: "UI_BUTTON_CLICK"
sound_success: "ENTITY_ENDERMEN_TELEPORT"
#=====-----=====-----=====-----[ Particle Config ]-----=====-----=====-----=====#
particle_main: "SNOW_SHOVEL"
particle_second: "FIREWORKS_SPARK"
Code (Text):
# CommandDelay config.yml
#=====-----=====-----=====-----[ Categories ]-----=====-----=====-----=====#
# Each category must have a unique identifier. For example: essentials or factions.
# Each category has separate delay, list of blacklisted worlds, cost, and commands.
# If blacklist:false, the worlds list is treated as a whitelist.
#
# For example, the Essentials commands below have 5 second delay and cost of 0,
# except in the listed worlds.
#
# To avoid exploits, list the commands with and without plugin prefaces.
category:
# example:
# delay: 5
# cost: 500
# commands:
# - "spawn"
essentials:
delay: 5
cost: 0
blacklist: true
worlds:
- "world"
commands:
- "essentials:back"
- "essentials:home"
- "essentials:jump"
- "essentials:spawn"
- "essentials:top"
- "essentials:tpa"
- "essentials:tpaall"
- "essentials:tphere"
- "essentials:tpo"
- "essentials:tpohere"
- "essentials:tppos"
- "essentials:warp"
- "essentials:world"
- "back"
- "home"
- "jump"
- "spawn"
- "top"
- "tpa"
- "tpaall"
- "tphere"
- "tpo"
- "tpohere"
- "tppos"
- "warp"
- "world"
#=====-----=====-----=====-----[ Command Cancel ]-----=====-----=====-----=====#
# The delayed command will be cancelled if the player executes one of the actions
# listed here, if the delay_cancel_action is set to true.
delay_cancel_interact: true
delay_cancel_move: true
delay_cancel_jump: false
delay_cancel_damage: true
delay_cancel_damaged: true
delay_cancel_break: true
delay_cancel_place: true
delay_cancel_chat: true
delay_cancel_command: true
#=====-----=====-----=====-----[ TitleBar Messages ]-----=====-----=====-----=====#
message_titlebar_enabled: true
message_titlebar_delaying: "{themecolor}Preparing..."
message_titlebar_delaying_subtitle: "&ePlease Stay For &6{left} &eSecond"
message_titlebar_delaying_canceled: "{themecolor}&lCommand /{cmd} Aborted"
message_titlebar_delaying_canceled_subtitle: "{flatcolor}Please Don't Do Anything"
message_titlebar_dispatched: "{themecolor}&lCommand /{cmd} Success"
message_titlebar_dispatched_subtitle: "&6Enjoy Your Day &f{player}"
#=====-----=====-----=====-----[ ActionBar Messages ]-----=====-----=====-----=====#
message_actionbar_enabled: true
message_actionbar_cooldown: "{themecolor}{left} Seconds Left to Command"
message_actionbar_dispatched: "&lThank's For Playing On This Server"
message_actionbar_reverse: true
message_actionbar_symbol: "���"
#The style of bar Fill
#=====-----=====-----=====-----[ Chat Messages ]-----=====-----=====-----=====#
message_chat_enabled: false
message_chat_delaying: "{flatcolor}Preparing..."
message_chat_delaying_subtitle: "&ePlease Stay For &6{left} &eSecond"
message_chat_delaying_canceled: "{themecolor}&lCommand /{cmd} Aborted"
message_chat_dispatched: "{themecolor}&lCommand /{cmd} Success"
#=====-----=====-----=====-----[ Messages ]-----=====-----=====-----=====#
message_prefix: "&8[&dCommandDelay&8]"
message_command_nomoney: "&cYou Don't Have Enough Money"
message_command_reload: "&6Config Successfully Reloaded"
message_command_nopermission: "You Don't Have &8[&f{perm}&8] &cPermission !"
#=====-----=====-----=====-----[ Placeholders ]-----=====-----=====-----=====#
# {themecolor} would replaced with Bright random color
# {flatcolor} would replaced with Darker random color
# {player} would replaced with Player displayname
# {left} would replaced by remaining second to wait
# {x} would replaced by player current X coord location
# {y} would replaced by player current Y coord location
# {z} would replaced by player current Z coord location
# {cmd} would replaced by player current delayed command
#=====-----=====-----=====-----[ Colors Schemes ]-----=====-----=====-----=====#
# The placeholder color schemes are defined here. If multiple colors are listed, they
# will be rotated every second.
themecolor:
- "&a"
- "&b"
- "&c"
- "&e"
flatcolor:
- "&f"
#=====-----=====-----=====-----[ Other Feature ]-----=====-----=====-----=====#
use_hologram: true
use_particle: true
#=====-----=====-----=====-----[ Sound Config ]-----=====-----=====-----=====#
sound_error: "ENTITY_BLAZE_DEATH"
sound_tick: "UI_BUTTON_CLICK"
sound_success: "ENTITY_ENDERMEN_TELEPORT"
#=====-----=====-----=====-----[ Particle Config ]-----=====-----=====-----=====#
particle_main: "SNOW_SHOVEL"
particle_second: "FIREWORKS_SPARK"
- YourAuction [Premium]
- MoreVault+ [Premium]
- MoreTP+ [Premium]
- HoloBlock [Premium]
- CommandDelay
- LoreManager
- MoreTP
- MoreVault
Donate: http://paypal.me/Onenrico
You can donate to me to make help me buy some food during this plugin development , i really appreciate every donation from you , thank's
You can donate to me to make help me buy some food during this plugin development , i really appreciate every donation from you , thank's
Quick facts
- Edition: Minecraft Java
- File type: .jar
- Minecraft versions listed: 1.8, 1.9, 1.10
- How to install: Install the matching mod loader (Forge, Fabric or NeoForge) for your Minecraft version. → Download the .jar. → Put it in the .minecraft/mods folder and launch that loader profile.
- Where to get it: Opens on Spigot — not every file is mirrored on our own servers.
Install steps are the general flow for this file type — How to install Minecraft Java mods & modpacks walks through it step by step.
♛ CommandDelay ♛ [1.8.8 - 1.13.X ✔] is a free Minecraft Java mod. Compatible with Minecraft 1.8, 1.9, 1.10, 1.11 and newer. Downloaded 14,686 times (via Spigot). Download it and open it directly in the game.
![[IMG]](http://proxy.spigotmc.org/c2556f00de09ed0fe6de042393b7c4a48e57b5b5?url=https%3A%2F%2Fcdn.discordapp.com%2Fattachments%2F474576504903172096%2F479328452147937281%2FBlue.png)
![[IMG]](http://proxy.spigotmc.org/5c85858863d6b55c79594ea50242ebc6af3cf273?url=https%3A%2F%2Fs5.postimg.cc%2Fo8wpfz1jb%2Fprofile.png)
![[IMG]](http://proxy.spigotmc.org/1741a6aca359cefda05ee689df40b6a7ba6d7d67?url=https%3A%2F%2Fs5.postimg.cc%2Fn6mixfb07%2Fdiscord.gif)
![[IMG]](http://proxy.spigotmc.org/06f3096f0cab31116ff1af258a6e4e14c0b26449?url=https%3A%2F%2Fs5.postimg.cc%2F6iv0uyb3r%2Fminecraft.gif)
![[IMG]](http://proxy.spigotmc.org/f2c2d3f7f9e7a8e251a0e13190f1787366ee86ba?url=https%3A%2F%2Fs5.postimg.cc%2Fnw5b9te4n%2Fspigot.gif)
![[IMG]](http://proxy.spigotmc.org/c3be4b8d27702e102afdc789736466724ddfa696?url=https%3A%2F%2Fs5.postimg.cc%2Ffrx74ues7%2Fplugin.png)