Advertisement
Guest User

Untitled

a guest
Jan 11th, 2019
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.14 KB | None | 0 0
  1. # Find all the information you need at http://dev.thomasvdbulk.nl/KoTH/
  2.  
  3. # To grab your own timezone go to: http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
  4.  
  5. global:
  6.   use-cache: false
  7.   debug: false
  8.   multiplekothsatonce: true
  9.   schedule-show-current-day-only: false
  10.   schedule-timezone: "Europe/Amsterdam"
  11.   date-format: "dd/MM/yyyy HH:mm:ss"
  12.   world-filter: false
  13.   minuteoffset: 0
  14.   startweekminuteoffset: 0
  15.   scheduleminuteoffset: 0
  16.   pre-broadcast: false
  17.   pre-broadcast-messages:
  18.    - "600:&eThe koth %koth% will start in 10 minutes!"
  19.     - "120:&eThe koth %koth% will start in 2 minutes!"
  20.     - "60:&eThe koth %koth% will start in 1 minute!"
  21.     - "30:&eThe koth %koth% will start in 30 seconds!"
  22.     - "15:&eThe koth %koth% will start in 15 seconds!"
  23.  
  24.   nocap-broadcast-interval: 30
  25.   helpcommand:
  26.    - "&8========> &c&lKoth &8<========"
  27.     - "&b/koth list &7Shows all available koths"
  28.     - "&b/koth loot &7Shows the loot for the upcoming koth"
  29.     - "&b/koth schedule &7Shows the schedule for koths"
  30.     - "&b/koth ignore &7Toggles the KoTH messages"
  31.  
  32. loot:
  33.   default: ""
  34.   randomize: true
  35.   default-amount: 5
  36.   randomize-stacksize: false
  37.   can-use-same-items: true
  38.   remove-after: 0
  39.   drop-on-removal: false
  40.   give-instantly: false
  41.   reward-everyone: false
  42.   commands:
  43.     enabled: false
  44.     changeingame: false
  45.     needop: true
  46.  
  47. hooks:
  48.   essentialsvanish: true
  49.   vanishnopacket: true
  50.   factions: true
  51.   kingdoms: false
  52.   feudalkingdoms: false
  53.   gangs: false
  54.   mcmmo: true
  55.   pvpmanager: false
  56.   bossbar:
  57.     enabled: false
  58.     range: 100
  59.     rangemargin: 5
  60.     text: "&a%koth% currently captured by: %capper%"
  61.     barsegments: 10 # ONLY 1, 6, 10, 12 and 20 are supported by Minecraft
  62.     barcolor: "BLUE" # Can ONLY be: BLUE, GREEN, PURPLE, PINK, WHITE, RED, YELLOW
  63.     countingDown: false # Put this to true if you want the bar to drain instead of filling
  64.     flags: # Those are some random flags I was able to toggle. Some don't seem to be working though. :(
  65.       createfog: false
  66.       darkensky: false
  67.       playmusic: false
  68.   featherboard:
  69.     enabled: false
  70.     board: "koth"
  71.     range: 100 # -1 to disable it
  72.     rangemargin: 5
  73.  
  74. koth:
  75.   remove-chest-at-start: true
  76.   ffa-on-time-limit: false # This will on time limit create a FreeForAll chest
  77.   default-capturetype: "" # set this to your desired capture type
  78.   contest-freeze: false
  79.   capture-cooldown: 0
  80.   channel-time: 0
  81.   knock-time: 0
  82.   minimum-players: 0
  83.   broadcast-interval: 30
  84.   captime-decrementation: # This is to decrease the captime as time passes
  85.     enabled: false
  86.     every-x-seconds: 600
  87.     decrease-by: 60
  88.     minimum: 300
  89.   start-new-on-end: false # This is using the map-rotation!
  90.   map-rotation:
  91.    - "map1"
  92.     - "map2"
  93.     - "map3"
  94.     - "map2"
  95.     - "etc"
  96.  
  97.  
  98. # If you use SQLite only database will be used, as name for the file to create
  99. # change storagetype to mysql if you want to use MySQL instead.
  100. database:
  101.   enabled: false
  102.   storagetype: "sqlite"
  103.   database: "KoTH"
  104.   host: "localhost"
  105.   port: 3306
  106.   username: "root"
  107.   password: ""
  108.   modules:
  109.     saveKothWins: true
  110.     savePlayerIgnores: true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement