Free and reliable backpack plugin for Bukkit/Spigot/Paper
Go to file
2020-02-06 13:57:29 +01:00
.github/ISSUE_TEMPLATE Add issue templates 2019-06-03 02:11:50 +02:00
.idea Use placeholder for url in language file 2020-01-12 19:22:35 +01:00
resources Merge branch 'master' into dev 2020-02-05 03:11:32 +01:00
src/at/pcgamingfreaks/Minepacks/Bukkit Refactoring and do not add the backpack item in worlds where the plugin is disabled 2020-02-06 13:57:29 +01:00
test/src Refactor code 2019-07-14 19:44:05 +02:00
.gitattributes Add .gitattributes and remove old stuff from sqldialects.xml 2019-05-30 02:55:13 +02:00
.gitignore Bugfix SQLITE_BUSY error 2017-09-12 18:44:41 +02:00
.travis.yml Fix build with JDK 11 2019-12-13 21:13:42 +01:00
LICENSE Initial commit 2014-08-02 17:50:30 +02:00
pom.xml Merge branch 'master' into dev 2020-02-05 03:11:32 +01:00
README.md Update to v2.1 (Closes #31) 2020-01-07 02:58:31 +01:00

Logo

Minepacks is a backpack plugin for minecraft server running bukkit or spigot.

ciImg releaseImg apiVersionImg licenseImg

featureRequestsImg bugReportsImg spigotRatingImg spigotDownloadsImg

Features:

  • Configuration
  • Backpack size controlled by permissions
  • Auto item-collect on full inventory (can be enabled in the config)
  • Multiple storage back-ends (Files, SQLite, MySQL)
  • Multi language support (multiple language file included)
  • Item filter (block items from being stored in the backpack)
  • Preserves the NBT data of items (everything that can be stored in a chest can be stored in the backpack)
  • Support for name changing / UUIDs
  • Auto-updater
  • API for developers

Requirements:

Runtime requirements:

Build requirements:

  • JDK for Java 8
  • Maven 3
  • git

Build from source:

The plugin can be build in 3 different configurations.
All the details about the different build configs and runtime modes can be found here.

Normal version:

git clone https://github.com/GeorgH93/Minepacks.git
cd Minepacks
mvn package

The final file will be in the target folder, named Minepacks-<CurrentVersion>.jar.

Standalone version:

This version works without the PCGF-PluginLib, however some API features are not available.

git clone https://github.com/GeorgH93/Minepacks.git
cd Minepacks
mvn package -P Standalone,ExcludeBadRabbit

The final file will be in the target folder, named Minepacks-<CurrentVersion>-Standalone.jar.

Release version:

This is the version of the plugin published on dev.bukkit.org and spigotmc.org.

git clone https://github.com/GeorgH93/Minepacks.git
cd Minepacks
mvn clean install -P Standalone,ExcludeBadRabbit
mvn clean package -P Release

The final file will be in the target folder, named Minepacks-<CurrentVersion>-Release.jar.

API:

Minepacks V2 comes with an API that allows you to interact with this plugin. If you think there is something missing in the API feel free to open a feature request. Please do not access data of the plugin in any other way than through the provided API, the inner workings will change and I won't keep track of what you are using in your plugin. For more details about the API please check the following links:

Source Code & Details JavaDoc Build Server

Support