Blocks Commands

Block commands via blacklist or whitelist.

You can decide whether or not to enable this features.

# ------------------
# Blocks Commands Settings
Blocks_Commands:

  enabled: true

If it is active, it will broadcast the violation report when it is triggered.

# ------------------
# Blocks Commands Settings
Blocks_Commands:

  enabled: true

  # If it is on "true" the execution attempt warning will be sent to chat.
  warning: true
  # Here you can enter the type of method you want to use to block commands:
  # - BLACKLIST | (The commands in the list will be blocked)
  # - WHITELIST | (The commands in the list will be able to execute)
  method: 'BLACKLIST'

You can choose between:

  • If you put BLACKLIST, it will block the commands in the "commands" list.

  • If you put WHITELIST, the player will only be able to execute the commands found in "commands".

Use enforcers to send the punishment to the player. For more information click HERE.

  # This message will be shown as soon as the command is blocked.
  # < ? > You can find more information about the executors in the header.
  executors:
    - '[MESSAGE] %prefix%&cYou cannot execute this command!'

According to the set method, through this list it will blacklist or whitelist the commands.

  # List of blocked or enabled commands according to the selected method.
  commands:
    - 'pl'
    - 'plugins'
    - 'ver'
    - 'version'
    - 'about'
    - '?'
    - 'help'
    - 'icanhasbukkit'

Last updated