Kits Plugin (1.17+) That Works With Essentials?

KudaXD

Supreme
Feedback score
3
Posts
147
Reactions
15
Resources
2
Looking for an easy to use kits plugin that is FREE and is just a kits plugin. I've seen so many kit plugins with all these BS features like an in-game kit editor, ugly configurations, hard to read/configure configs, etc.

I'm looking for a simple kits plugin.

If you have one that supports essentials, let me know!
 
Type
Requesting
Exclusivity
  1. Non-exclusive
Server software
  1. Spigot
  2. Paper
Supported versions
  1. 1.7
  2. 1.8
  3. 1.9
  4. 1.10
  5. 1.11
  6. 1.12
  7. 1.13
  8. 1.14
  9. 1.15
  10. 1.16
  11. 1.17
  12. 1.18
  13. 1.19
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

Morals

Feedback score
1
Posts
97
Reactions
32
Resources
1
I have a kit all-in-one plugin if you're interested, might be too complicated for you though.

YAML:
miscellaneous:
  ## The default kill algorithm options are "lasthit" and "highestdamage."
  ## "lasthit" will give the kill to whoever last hit the dying player, as long as they have not died since the attack.
  ## "highestdamage" will give the kill to whoever did the most damage to the dying player, as long as they did not die before the dying player.
  ## Custom kill algorithms can be added by implementing the KillAlgorithm interface in a custom plugin.
  kill-algorithm: "lasthit"

  ## The default warp algorithms are "random," "far," "close," and "pick."
  ## "random" will warp players to a random warp.
  ## "far" will warp players to the warp that is the furthest away from all other players.\
  ## "close" will warp players to a warp that is the closest to another player, but not too close.
  ## "pick" will spawn players at the warp that is picked by the player.
  ## Custom warp algorithms can be added by implementing the WarpAlgorithm interface in a custom plugin.
  warp:
    algorithm: "random"
    gui:
      rows: 3
      fill-item:
        ==: org.bukkit.inventory.ItemStack
        v: 3218 # use 2586 for 1.16.5
        type: "BLACK_STAINED_GLASS_PANE"
        meta:
          ==: ItemMeta
          meta-type: UNSPECIFIC
          display-name: ""
          lore: [ ]
          enchants: { }
          unbreakable: false
  glow-color: "&#FFFFFF"

  ## The default combat tag predicates are "timer," "smart," "none," and "lock."
  ## "timer" will tag a player for a set amount of time after they attack or are attacked by another player.
  ## "smart" will tag a player for the entire duration that they are outside of spawn. /spawn will have a countdown.
  ## Logging out while outside of spawn using the "smart" algorithm will check if any players are within a certain radius of the player logging out.
  ## "none" will not tag players at all.
  ## "lock" is the same as "timer" but will not allow the player to hit anyone besides the first target.
  combat-tag-predicate: "timer"
  ## Duration in seconds for the "timer" and "lock" algorithms
  combat-tag-duration: 20
  ## Distance in blocks for the "smart" algorithm
  combat-tag-smart-radius: 20
  leaderboard-format: "&e%rank%. &f%player% &7- &e%value%"

  spawn:
    ==: org.bukkit.Location
    world: world
    x: 0.0
    y: 0.0
    z: 0.0
    pitch: 0.0
    yaw: 0.0

scoreboard:
  ## Available placeholders: %kills% %deaths% %kdr% %killstreak%
  enabled: true
  ## How often the scoreboard updates in ticks (20 ticks = 1 second)
  update-interval: 20
  sidebar:
    enabled: true
    title: "&c&lModern&f&lFFA"
    lines:
      - "&7&m---------------------"
      - "&c&lKills: &f%kills%"
      - "&c&lDeaths: &f%deaths%"
      - "&c&lKillstreak: &f%killstreak%"
      - "&c&lKDR: &f%kdr%"
      - "&7&m---------------------"
  below-name:
    ## Available placeholders: %kills% %deaths% %kdr% %killstreak% %health%
    ## This will show up as "%Number% %Format%", there is no way to change the order
    ## When not in spawn, the number and format will be the player's health
    enabled: true
    number: "%kills%"
    format: "Kills"

exploits:
  prevent-health-indicators: true
  prevent-armor-damage-indicators: true

mongo:
  ## Example: mongodb+srv://username:password@localhost/
  connection-string: "" ## If this is not empty, it will be used instead of the other options
  address: "localhost"
  port: 27017
  database: "ModernFFA" ## This is required even if you are using a connection string
  username: "username"
  password: "password"

  profile-collection: "profiles"
  clan-collection: "clans"
 
Top