What is SwordWork? Swordwork is an Framework, for creating items super easily! You don't need much java experience to code your own code, just an IDE.
- Ingame commands to get your items, list all items, and unregister Items you don't like. - It's an very lightweight Plugin - It can handle servers on 1.8 and 1.16 (Soon more) - Much more! Try it yourself
- Coding the Plugin for every version - Coding the Plugin for bungeecord - language.yml for translating messages - Creating Items Ingame
- You are not allowed to decompile the Plugin - You are not allowed to say it is your plugin - You are not allowed to copy & paste the src in your project.
First you will create your Class, name it how you want. Let the Class extend from the SwordItem, and implement everything the IDE wants. In the constructor you will need to say the Class SwordItem, your ID, Name, Material, etc. so you will do it like that:
Code (Text):
super(Your ID as Int, "Your Name", Material., Can It break blocks?, Is it oneTimeUse?, "The Displayname");
And in your main you will register the item with SwordWorkMain.getInstance().api.registerItem(new YourClassName());