πŸ”¨Ban System

Ban and kick commands that allows staff to punish users. It is recommended to use a banning plugin as this feature is not as complete as others are. Recommended use: blacklist users

config.yml
ban_system:
  enabled: true
  commands:
    vban: true
    vbanip: true
    vunban: true
    vkick: true
    vcheckban: true
  default_ban_reason: "No reason specified"
  console: "Console"
  screen_messages:
    ban:
        - "&f-----------------------------"
        - "&cYou have been banned from the network!"
        - "&fPlayer: &b{player}"
        - "&fBanned by: &b{banned_by}"
        - "&fBanned at: &b{banned_at}"
        - "&fReason: &b{reason}"
        - "&f-----------------------------"
    kick:
      - "&f-----------------------------"
      - "&cYou have been kicked from the network!"
      - "&fPlayer: &b{player}"
      - "&fKicked by: &b{kicked_by}"
      - "&fReason: &b{reason}"
      - "&f-----------------------------"

Last updated