Skip to content

Koth, Rewards and Hologram

casqidev edited this page Jun 12, 2026 · 2 revisions

KOTH Configuration

Once a KOTH is created, a configuration file with the same name will be generated inside the koths folder.

This file contains all settings related to the KOTH, including its mode, rewards, hologram configuration, capture settings and more.

Example:

name: Koth
mode: POINTS

capture:
  time-seconds: 20
  points-reward: 1
  kill-points: 0

You can freely edit these values to customize the behavior of each KOTH.


Rewards

MimiKoth includes a flexible reward system that supports any command executed by the server.

This allows you to integrate with economy plugins, permissions plugins, vouchers, custom items and much more.

Example:

rewards:
  - eco give %player_name% 1000
  - voucher give koth %player_name% 1
  - xp add %player_name% 10 levels
  - give %player_name% diamond 16
  - lp user %player_name% parent addtemp vip 1d

All commands are executed by the console when the player wins the KOTH.


Holograms

Every KOTH includes a built-in hologram system powered by Minecraft's native TextDisplay entities.

The hologram is fully configurable and supports:

  • Hex colors
  • RGB colors
  • PlaceholderAPI placeholders
  • Custom text
  • Background customization
  • Text shadows

You can also disable the built-in hologram and use a third-party hologram plugin if preferred.

Example:

hologram:
  enabled: true
  height: 2.0
  text-shadow: true
  background:
    enabled: false
    color: '#000000'
    opacity: 90
  lines:
    - '&6&lKOTH %koth%'
    - '&fMode: &e%mode%'
    - '&7Edit this hologram in &fkoth.yml&7.'
  location:
    world: pvp
    x: 10.0
    y: 94.0
    z: 24.5

If the built-in hologram is disabled, the KOTH will continue functioning normally.

Clone this wiki locally