Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/slimefun/addon-template
This is an example Repository for a generic Slimefun4 Addon.
https://github.com/slimefun/addon-template
addon bukkit java minecraft plugin server slimefun spigot template
Last synced: 7 days ago
JSON representation
This is an example Repository for a generic Slimefun4 Addon.
- Host: GitHub
- URL: https://github.com/slimefun/addon-template
- Owner: Slimefun
- Created: 2019-09-26T13:59:57.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-06-29T19:34:16.000Z (over 1 year ago)
- Last Synced: 2023-08-13T08:00:49.825Z (over 1 year ago)
- Topics: addon, bukkit, java, minecraft, plugin, server, slimefun, spigot, template
- Language: Java
- Homepage: https://github.com/Slimefun/Slimefun4/wiki/Developer-Guide
- Size: 23.4 KB
- Stars: 7
- Watchers: 3
- Forks: 15
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Slimefun4 Addon
This is an example Repository for a generic Slimefun4 Addon.
In the top left is a button "Use this template", click this to create your own Addon for Slimefun4 using this basic template.## How to create your own addon.
This is a template repository that you can use to create your own Slimefun4 Addon.
We have also written an extensive step-by-step tutorial which you can find here:
https://github.com/Slimefun/Slimefun4/wiki/Developer-Guide## Changing some important things
Navigate to `src/main/java` and rename the package and the .java File to your liking.
Suggestion: "me.yourname.yourproject" (all lower case) and "ProjectName.java"
Example: "me.thebusybiscuit.cooladdon" and "CoolAddon.java"Navigate to `src/main/resources/plugin.yml` and change the "author" and "main" attributes.
You may also want to change the description to something meaningful.Navigate to `pom.xml` and change the group id to "me.%Your name%" and change the artifact id to the name of your Project.
After that you are good to go, you can now start developing your own Addon for Slimefun4.