Hello, I go by the name BigPingLowIQ. I am new to the programming scene and in a week of researching and learning how to make spigot plugins I came up with this simple but usefull plugin.
This is an open source minecraft spigot plugin for creating private vaults. Each vault has a custom command name, title, size and permission. Simple to use and add new vaults using a couple commands.
| Command | Usage |
|---|---|
/open |
Opens a menu that shows a list of all vaults and lets you open them. |
/open [<vault_name>] |
Open a vault of the specified <vault_name> |
/open [<vault_name>] [<player_name>] |
Open a players vault. Player must be online. |
/privatevaultsadd [<vault_name>] [<title>] [<size>] |
Adds a new vault. Use underscores "_" in the title to add spaces between words. |
/privatevaultsremove [<vault_name>] |
Removes a vault if it exisits. |
/privatevaultsreset [<vault_name>] |
Resets all inventory data of an exisiting vault. Can't be undone. |
| Permission | Usage |
|---|---|
privatevaults.* |
Gives permission to all commands. |
privatevaults.open |
Gives permission to use /open command. |
privatevaults.open.invsee |
Gives permission to open other players vaults. Player must be online. Note. Anyone with this permission can open any of his own vaults. |
privatevaults.vault.* |
Gives permmission to open any of the exisiting vaults. |
privatevaults.vault.<vault_name> |
Gives permission to open a specified vault. |
privatevaults.admin.add |
Gives permission to /privatevaultsadd command. |
privatevaults.admin.remove |
Gives permission to /privatevaultsremove command. |
privatevaults.admin.reset |
Gives permission to /privatevaultsreset command. |
- v1.0.0
- The initial release of this plugin.
- v1.0.1
- Added auto update checking.
- v1.0.2
- Added bstats support.
- v1.1
- Added a menu when using
/open
- Added a menu when using
- Opening offline player vaults.
- Deleting individual player vaults.
- Automatic update check. (Added)