Hello, I present to your attention the recode
of the GreatKits plugin from Kizeko_
I express my sincere gratitude for using his resources.
GreatKitsReloaded - allows you to easily create and edit kits. In addition, it saves inventory by slots, which allows you to load a kit with the arrangement of items as you have installed. In addition, the code was rewritten and some bugs were fixed.
Made support for versions 1.12.2 - 1.19.x
Supports multiple languages, the plugin already contains translations of English, Russian, Spanish, German, Chinese
The plugin was rewritten and improved by coder 6ex9one
Saving items by slot has been improved, support for translations and different languages has been improved, bugs have been fixed, and support for the next versions has been added. It is also planned to be updated further.
Supported plugins :
This plugin supports
PlaceholderAPI
https://www.spigotmc.org/resources/placeholderapi.6245/
Admin-Commands
/gk create <kit>
Allows you to create a whale with the specified ID
/gk setname <kit> <Name>
Allows you to assign a name to the whale, supports all colors including RGB
/gk remove <kit>
Allows you to remove the whale
/gk setonetimeuse <kit> <true/false>
Allows you to specify whether the set will be disposable.
/gk setfirstjoin <kit> <true/false>
Specifies whether the whale will be issued automatically upon login.
/gk setinv <kit>
Install inventory for the whale (the one you have now)
/gk setcooldown <kit> <seconds>
Allows you to set the cooldown for recruitment in seconds
Player-Commands
/kit <kit>
Get the specified set
/kit list
Get a list of available sets
/kit
Shows help on the command, but!
Attention with the new update you will be able to specify any command that should be executed when entering our command!
Permissions
-
- greatkits.* — Allows the player to access all kits without any restrictions.
Default: false
- greatkits.admin — Allows the player to bypass cooldowns and one-time-use limitations.
Default: op
- greatkits.<kitId> — Allows the player to access a specific kit with the given ID.
Default: false
- greatkits.list — Allows the player to see the list of available kits.
Default: true
![[IMG]](//proxy.spigotmc.org/56754f5f4fdf161b5388f1b320fc87ad0871032d/687474703a2f2f692e696d6775722e636f6d2f5752334d6b70742e706e67)
Code (YAML):
[/B
]
[/B
]
################################################################################################
# #
# Copyright Kizeko_ & 6ex9one #
# GreatKits 3.0.0 #
# #
################################################################################################
# This plugin supports PlaceholderAPI:
# https://www.spigotmc.org/resources/placeholderapi.6245/
# It is not required to use the plugin.
# Permissions:
# greatkits.* - Player can access all kits without restriction.
# greatkits.admin - Player can bypass cooldowns and one-time-use limits.
# greatkits.<kitId> - Player can access the specified kit if they have this permission.
# greatkits.list - Player can see the list of available kits if they have this permission.
# Plugin settings
settings
:
# Plugin language (supported: en, ru, spa, de, zh)
language
:
"en"
# Whether items should be dropped on the ground if the player's inventory is full
drop-on-full-inventory
: true
# Override the /kit command with a custom command (e.g., opening a menu)
override-kit-command:
enable
: false
# The command to execute instead of /kit
# Use [CONSOLE] to execute as console, [PLAYER] to execute as player
action
:
"[CONSOLE] menu open %player%"
# Time format used in messages (when showing cooldowns or delays)
time-format
:
"d 'd.' H 'h.' m 'min.' s 'sec.'"
# Settings related to PlaceholderAPI integration
placeholder-settings:
enable
: true
# Time format for placeholders
time-format
:
"d 'd.' H 'h.' m 'min.' s 'sec.'"
permissions
:
# Text shown when the player has permission to use a kit
available
:
"Available"
# Text shown when the player does not have permission to use a kit
not-available
:
"Not available"
cooldown
:
# Text shown when the kit is on cooldown (with %time% as the remaining time)
available
:
"Remaining: %time%"
# Text shown when the kit can be claimed (no cooldown)
not-available
:
"You can claim"
[B
]
[B
]