- Tags
-
- Tags
- None
About:
This kit plugin allows you to create custom kits, and add abilities to them, like on right click it will run a certain method/command (for using a command please use https://www.spigotmc.org/resources/kitcommands.30729/)
PLEASE REPORT ALL YOUR BUGS SO I CAN FIX THEM!
Pros:
Use this or use the certain lines in your own plugin:
YOUTUBE VIDEO:
This kit plugin allows you to create custom kits, and add abilities to them, like on right click it will run a certain method/command (for using a command please use https://www.spigotmc.org/resources/kitcommands.30729/)
PLEASE REPORT ALL YOUR BUGS SO I CAN FIX THEM!
Pros:
- A kit GUI
- An event for you to define the player to do special things when he right clicks an item when using a certain kit (or just use this)
- Every thing is saved, even lores and names
- Nothing is editable from configuration
- This is very much still in development
- Many errors and bugs
- You need to know coding to know all the capabilities of this plugin
- Currently only up to 40 or so kits show up in the GUI
- Icons don't work yet (it is command blocks by default)
- Preferably use one word kits, 2 word kits require some config fixing
- Special abilities (which are about 99% flexible)
- A GUI for the player
- /kit | Kit GUI
- /kit create <name> <lore> <icon> | ICON DOES NOT WORK CURRENTLY, INPUT NOTHING IN THERE
- /kit remove <name> | remove a kit, DON'T USE CONFIG
- /kit get <name> | get a specific kit
- kits.use | access to the GUI
- kits.create | create a kit
- kits.remove | remove a kit
- kits.get | get a specific kit
Use this or use the certain lines in your own plugin:
Code:
@EventHandler
public void KitRightClick(SpecialRightClickEvent event){
if(event.getKit.equalsIgnoreCase("Your kit here")){
if(event.getItem.getType() == Material.DIAMOND_SWORD){
//Do something
}
}
}
YOUTUBE VIDEO: