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/
First, you'll have to create the kit :
/gk create <kit>
It will simply create an yml file in the Kits folder inside the dataFolder of the plugin.
Inside this yml file, you'll find all the ,informations about the kit (Permission, cooldown, contents...)
/gk remove <kit>
It will delete the kit
/gk setonetimeuse <kit> <true:false>
If this parameter is true, the player will only be able to get this kit 1 time.
/gk setfirstjoinkit <kit> <true:false>
If this parameter is true, the player will receive the kit when he joins the server for the first time.
/gk setinv <kit>
By entering this command, all your current inventory will be saved with slots in a yml file and ready to be loaded
(Armor and secondary hand slots are also saved.)
/gk setcooldown <kit> <cooldown>
You'll set the new delay of the kit.
/gk version
Sends you the version of the plugin
/kit
It shows you all your kits
/kit help
The kit help command
/kit <kit>
It gives you the kit.
/kit <kit> <playerName>
It gives the kit to an other player (you need greatkits.admin permission)
/kit list
Display the list of all the kits.
/kit preview <kit>
You are able to preview the kit.
Permissions :
- greatkits.admin (Admin permission)
- greatkits.kits.kitName (kit permission)
(For example : greatkits.kits.Warrior)
- greatkits.kits.* (permission to all kits)
- (if enabled in config.yml) greatkits.list and greatkits.preview
Code (YAML):
[/B
]
################################################################################################
# #
# Copyright Kizeko_ & 6ex9one #
# GreatKits 3.0.0 #
# #
################################################################################################
#This plugin supports PlaceholderAPI
#https://www.spigotmc.org/resources/placeholderapi.6245/
#This is not obliged to have it
#Settings
settings
:
#Set the language for the plugin (en,ru,spa,de,zh)
language
:
"en"
#Kits will still be displayed in the /kit GUI even though you don't have the permission
kit-display-without-perm
: true
#Enable or disable the help-item (you have to enable both options above if you want to enable this one)
enable-help-item
: false
#Enable PlaceholderAPI
placeholder-api
: true
#Permission section
permission
:
#If true --> the player must have greatkits.list permission to get the list of all the kits | If false --> No permission required to get the list of all the kits
kit-list
: false
[B
]