Configurations

Here's a list of every configuration file, and explanations for non-obvious settings.

/config/features.yml
# This controls all the features that are enabled in the Staff Mode.
# Setting any of these to false, or removing them completely, will result in the feature not working.
features:
  jump-compass: true
  inspection-stick: true
  worldedit-wand: true
  random-teleporter: true
  punish-wand: true
  vanish-toggle: true


# The way the items will look in your hotbar, and where they'll be located. This is all for the Staff Mode.
items:
  jump-compass:
    feature-type: "JUMP_COMPASS"
    # The bukkit material of the item.
    # You can view a list of materials here: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html
    material: "COMPASS"
    # The name of the item.
    name: "&e&lJUMP COMPASS"
    # The description of the item.
    lore:
      - ""
      - "&fLeft click to &eteleport&f where you're clicking"
      - "&fRight click to &eview&f all online players"
    # The position of the item, starts counting from 0.
    slot: 0
  inspection-stick:
    feature-type: "INSPECTION_STICK"
    material: "STICK"
    name: "&c&lINSPECTION STICK"
    lore:
      - ""
      - "&fLeft click a player to view their &cinventory"
      - "&fRight click a player to view their &cenderchest"
    slot: 1
    left-command: "openinv %player%"
    right-command: "openender %player%"
  worldedit-wand:
    slot: 2
  random-teleporter:
    feature-type: "RANDOM_TELEPORTER"
    material: "CLOCK"
    name: "&6&lRANDOM TELEPORTER"
    lore:
      - ""
      - "&fClick me to randomly teleport to a player"
    slot: 3
  punish-wand:
    feature-type: "PUNISH_WAND"
    material: "BLAZE_ROD"
    name: "&b&lPUNISH WAND"
    lore:
      - ""
      - "&fRight click any player to punish them"
    slot: 4
  vanish-toggle:
    feature-type: "VANISH_TOGGLE"
    material: "FEATHER"
    name: "&d&lTOGGLE VANISH MODE"
    lore:
      - ""
      - "&fClick here to toggle your vanish mode"
    slot: 5
/config/vanish.yml
# This configuration file controls everything related to the vanish mode.

# Should vanish automatically be enabled when someone with the right permissions joins?
automatic-vanish: false
# Should a player get a constant actionbar notification that they are in vanish?
actionbar-vanish-indication: true
# What should the actionbar notification be, if enabled?
actionbar-vanish-message: "&A&lYOU ARE IN VANISH"

# Should a fake join message be sent when a player unvanishes?
fake-join-message-enabled: false
# What should that fake join message be?
fake-join-message: "&e%player% has joined the game"

# Should a fake quit message be sent when a player unvanishes?
fake-quit-message-enabled: false
# What should that fake quit message be?
fake-quit-message: "&e%player% has left the game"

# What potion effects should players in vanish receive?
potion-effects:
  - "INVISIBILITY:1"

# Should flight automatically enable when a player toggles vanish on?
vanish-flight-enable: false
# Should flight mode stay on if a player toggles vanish mode off?
vanish-flight-retain: false

# This controls everything a player is able to do when they're vanished.
options:
  # Don't break any blocks
  break-block: false
  # Don't place any blocks
  place-block: false
  # Don't interact with any block
  interact: false
  # Don't attack any mob or player
  attack: false
  # Don't take any damage from any source
  receive-damage: false
  # Don't pickup items
  pickup: false
  # Don't drop items
  drop: false
  # Don't lose hunger
  hunger-loss: false
  # Should mobs target the player?
  mob-target: false
config.yml
# The configuration for Redis, if needed & enabled.
redis:
  enabled: false
  user: ""
  password: ""
  host: ""
  port: 6379

# How often should a message be sent to a player that's frozen?
freeze-message-cooldown: 3
# The message that's sent to players that are frozen, on repeat.
freeze-message: "&c&l(!)&C You have been frozen. Join support waiting room now in discord.gg/example! Do not log out, or you'll be banned!"

Last updated