Permissions: - backpack.size.(backpack max rows)
- backpack.use
- backpack.amount.x
Commands: - /bp (backpack number)
- /bp reload
Code (Text):
# ==================================================
# Pablitopacks - Backpack Configuration
# ==================================================
# Author: Pablohs08
# Description:
# This file allows you to configure the default size
# and maximum backpacks for your players.
# Permissions can override these values:
# - backpack.size.X -> Defines the number of rows (1-6)
# - backpack.amount.X -> Defines how many backpacks a player can own
# ==================================================
# Default size in ROWS (each row = 9 slots)
# If a player has no "backpack.size.X" permission,
# this value will be used as fallback.
default-size: 3
# Default maximum number of backpacks a player can own
# If a player has no "backpack.amount.X" permission,
# this value will be used as fallback.
max-backpacks: 3
# -------------------------
# Examples:
# -------------------------
# - Player without any permission will have:
# default-size (3 rows → 27 slots per backpack)
# max-backpacks (3 backpacks total)
#
# - Player with "backpack.size.5" and "backpack.amount.10":
# 5 rows per backpack (45 slots each)
# Up to 10 backpacks
#
# - Player with only "backpack.size.2":
# 2 rows per backpack (18 slots each)
# max-backpacks will still use the default value
# -------------------------
Code (Text):
# ==================================================
# Pablitopacks - Plugin Messages
# ==================================================
# Author: Pablohs08
# Description:
# This file contains all the messages used by the plugin.
#
# You can use the variable %prefix% to add the plugin
# prefix to any message.
# ==================================================
# -------------------------
# Prefix & General Messages
# -------------------------
# The prefix for plugin messages.
# You can use color codes with '&'
prefix: "&8[&aPablitopacks&8]&r "
# General messages
only-players: "&cThis command can only be used by players."
invalid-command-usage: "&cUse /bp <number> or /bp reload"
invalid-number: "&cInvalid number."
reload-successful: "&aConfiguration reloaded."
invalid-backpack: "&cInvalid backpack number. Maximum allowed: &e%max_backpacks%"