Kicking

Staff++ adds its own kick command. When used, a history of the kicks will be preserved. Kicks also will be shown in the infractions menu.

Permissions

View permissions page

Commands

Config

kick-module:
  # Whether or not the plugin will use "/kick" features.
  enabled: false
  # If set to true, staff members will no longer have the ability 
  # to specify a custom reason
  fixed-reason: false
  # Possible kick reasons, when defined the staff member will see
  # a reason selection GUI
  reasons: []

Examples

Kick with custom reason

/kick myplayer He was spamming

Kick with reason select:

/kick myplayer
kick-module:
  enabled: true
  fixed-reason: false
  reasons:
  - reason: ANNOYING
    material: PAPER
    info: he is ANNOYING
  - reason: SPAM
    material: PAPER
    info: Use when a player is spamming

Kick with default reason

/kick myplayer
kick-module:
  enabled: true
  fixed-reason: false
  reasons:
  - reason: SPAM
    material: PAPER
    info: Use when a player is spamming

No reason selection is shown because only one reason is available.

Last updated