Command Delays

If you use ordered commands, and want some command group to delay, you can use this feature.

Variable
Expected Value

delay

Delay in seconds.

If you use delay on one command group, every command group after that will be delayed. So it is a chain reaction.

Example configuration:

drinkingCommands:
  '1':
    commands:
      - fly %player% enable
    executor: CONSOLE
  '2':
    commands:
      - w %player% You get this whimsical feeling flowing through your body.. you're glowing.. and you can fly!!
    delay: 2 # 2 second delay
    executor: CONSOLE

Last updated