mirror of
https://github.com/GeorgH93/Minepacks.git
synced 2024-12-31 18:17:49 +01:00
2f8e062216
This commit adds the "/backpack rewrite" command which enables admins to convert the backpacks into an upgradable format All backpacks written with this version can be upgraded to MC 1.13 or newer!
99 lines
3.0 KiB
YAML
99 lines
3.0 KiB
YAML
name: ${project.name}
|
|
author: ${author}
|
|
website: ${website}
|
|
main: ${project.groupId}.${project.artifactId}.${project.artifactId}
|
|
description: ${project.description}
|
|
version: ${project.version}
|
|
commands:
|
|
backpack:
|
|
description: Main command
|
|
aliases: bp
|
|
usage: /backpack
|
|
permissions:
|
|
backpack.*:
|
|
description: Gives access to the full MinePacks functionality.
|
|
children:
|
|
backpack: true
|
|
backpack.size.6: true
|
|
backpack.others: true
|
|
backpack.others.edit: true
|
|
backpack.KeepOnDeath: true
|
|
backpack.clean: true
|
|
backpack.clean.other: true
|
|
backpack.noCooldown: true
|
|
backpack.fullpickup: true
|
|
backpack.disable:
|
|
description: This permission group can be used to disable the plugin for certian users/groups/worlds.
|
|
default: false
|
|
children:
|
|
backpack: false
|
|
backpack.use: false
|
|
backpack.others: false
|
|
backpack.KeepOnDeath: true
|
|
backpack.clean: false
|
|
backpack.fullpickup: false
|
|
backpack.use:
|
|
description: Allows a player to open the backpack.
|
|
children:
|
|
backpack: true
|
|
backpack:
|
|
description: Allows a player to open the backpack.
|
|
default: false
|
|
backpack.size.1:
|
|
description: Mini size for a backpack, if the player has backpack permission he will also have at least a backpack with the size 1.
|
|
default: false
|
|
backpack.size.2:
|
|
description: 2*9 backpack
|
|
default: false
|
|
backpack.size.3:
|
|
description: 3*9 backpack
|
|
default: false
|
|
backpack.size.4:
|
|
description: 4*9 backpack
|
|
default: false
|
|
backpack.size.5:
|
|
description: 5*9 backpack
|
|
default: false
|
|
backpack.size.6:
|
|
description: 6*9 backpack
|
|
default: false
|
|
backpack.size.7:
|
|
description: 7*9 backpack (broken gui)
|
|
default: false
|
|
backpack.size.8:
|
|
description: 8*9 backpack (broken gui)
|
|
default: false
|
|
backpack.size.9:
|
|
description: 9*9 backpack (broken gui)
|
|
default: false
|
|
backpack.clean:
|
|
description: Allows the player to clean their own backpack.
|
|
default: false
|
|
backpack.fullpickup:
|
|
desctiption: Allows the player to automatically pick up items when their inventory is full (function needs to be enabled in the config)
|
|
defaut: true
|
|
backpack.clean.other:
|
|
description: Allows the player to clean other players backpacks.
|
|
default: op
|
|
children:
|
|
backpack.clean: true
|
|
backpack.others:
|
|
description: Allows the player open backpacks of other players.
|
|
default: op
|
|
backpack.others.edit:
|
|
description: Allows the player to edit backpacks of other players.
|
|
default: op
|
|
children:
|
|
backpack.others: true
|
|
backpack.KeepOnDeath:
|
|
description: Allows the player to keep their items in their backpack on death.
|
|
default: op
|
|
backpack.noCooldown:
|
|
description: Allows to bypass the cooldown to open the backpack.
|
|
default: op
|
|
backpack.ignoreGameMode:
|
|
description: Allows to bypass the game-mode restriction.
|
|
default: op
|
|
backpack.rewrite:
|
|
description: Converts all stored backpacks to the newest format.
|
|
default: op |