Config.yml

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
# ___  __    ___  _________        ________  ___      ___ ________        ________  ___       ___  ___  ________
#|\  \|\  \ |\  \|\___   ___\     |\   __  \|\  \    /  /|\   __  \      |\   __  \|\  \     |\  \|\  \|\   ____\
#\ \  \/  /|\ \  \|___ \  \_|     \ \  \|\  \ \  \  /  / | \  \|\  \     \ \  \|\  \ \  \    \ \  \\\  \ \  \___|_
# \ \   ___  \ \  \   \ \  \       \ \   ____\ \  \/  / / \ \   ____\     \ \   ____\ \  \    \ \  \\\  \ \_____  \
#  \ \  \\ \  \ \  \   \ \  \       \ \  \___|\ \    / /   \ \  \___|      \ \  \___|\ \  \____\ \  \\\  \|____|\  \
#   \ \__\\ \__\ \__\   \ \__\       \ \__\    \ \__/ /     \ \__\          \ \__\    \ \_______\ \_______\____\_\  \
#    \|__| \|__|\|__|    \|__|        \|__|     \|__|/       \|__|           \|__|     \|_______|\|_______|\_________\
#                                                                                                         \|_________|
# KitPvP Plus
# Download here: http://nckr.link/kpp
# config.yml

update:
  alert: true
  # Coming soon
  auto-download: false
  # In minutes
  re-check-alert: 10
  # If update alerts are enabled, should it check for beta updates
  notify-beta: false

data-storage:
  # mysql, mongo, flat
  type: flat
  # Only needed for mysql and mongo
  host: localhost
  port: 3306
  # Only needed for MySQL
  database: "KitPVP"
  authentication:
    # Must be enabled for mysql. Leave password in blank quotes for empty password
    enabled: true
    username: root
    password: ""

enable-signs: true
enable-guis: true

exp:
  kills: 25
  deaths: 5

death-sound: "ENTITY_ENDERMAN_DEATH"
arrow-hit-sound: "BLOCK_NOTE_BLOCK_PLING"

filler-item: "STAINED_GLASS_PANE"
abilities:
  tnt-shooter:
    displayname: "&cTNT Shooter"
    material: "TNT"
    amount: 10
    lore:
      - "&7Shoot opponents with primed tnt"
      - "&7Just right click"
  fireball:
    displayname: "&6Fireball"
    material: "FIREBALL"
    amount: 10
    lore:
      - "&7Shoot it and fireballs appear!"
      - "&7Just right click"
  sonic:
    displayname: "&9SONIC!!!"
    material: "LAPIS_BLOCK"
    amount: 1
    lore:
      - "&9I AM SPEEEEEEEEEED!!!"
      - "&7Right click to give speed!"
  fireman:
    displayname: "&aFireman"
    material: "BUCKET"
    amount: 1
    lore:
      - "&7If your on fire, put your self out by right clicking this"
      - "&7Right click to give speed!"

# When soup is used, should the empty bowl be removed from the inventory
remove-empty-soup: true

kill-commands:
  - "tell %player% You died to %killer%"
  - "tell %killer% You killed %player%"

scoreboard:
  enabled: true
  disabled-worlds:
    - world_the_end
  spawn:
    title: "&c&lSpawn"
    board:
      - "&7%bar%"
      - "&7Hello there %player%"
      - ""
      - "&7Kills: &b%kills%"
      - "&7Deaths: &b%deaths%"
      - ""
      - "play.example.com"
      - "&7%bar%"
  arena:
    title: "&c&lArena"
    board:
      - "&7%bar%"
      - "&7Hello there %player%"
      - ""
      - "&7Kills: &b%kills%"
      - "&7Deaths: &b%deaths%"
      - ""
      - "play.example.com"
      - "&7%bar%"
Back to top