SimpleItemsPerms is a powerful and intuitive plugin that allows you to assign specific permissions to individual items in your Minecraft server. Perfect for creating exclusive VIP kits, premium items, or special rewards that only certain players can use!
# Cancel button
cancel-button:
slot: 53
material: RED_CONCRETE
name: "&c&lCANCEL"
lore:
- "&7Click to cancel"
- "&7and close the GUI"
# Lore Configuration
lore:
# Lore text is now defined in language files:
# - lang/messages_en_US.yml: lore-no-permission
# - lang/messages_it_IT.yml: lore-no-permission
# Hide lore for players who HAVE the permission
hide-for-permitted-players: true
# Lore position (start or end)
position: "end" # Options: "start", "end"
# Events to block for players without permission
blocked-events:
use-item: true # Right/left click
equip-armor: true # Equipping armor
consume: true # Eating/drinking potions
drop: false # Dropping the item (ALLOWED - to get rid of it!)
pickup: true # Picking up the item (BLOCKED)
move-inventory: true # Moving in inventory
break-block: true # Breaking blocks
place-block: true # Placing blocks
attack: true # Attacking entities
shoot-bow: true # Shooting with bow
# Sound played when an action is blocked
block-sound:
enabled: true
sound: "ENTITY_VILLAGER_NO" # Vanilla Minecraft sound
volume: 1.0
pitch: 1.0
# Debug system
debug: false
Language Files:
Language files are located in
plugins/SimpleItemsPerms/lang/
messages_en_US.yml - English translations
messages_it_IT.yml - Italian translations
Want to add your language? Copy an existing file, translate it, and send it to us!
1. Run command:
/sip gui 2. Place items you want to restrict in the GUI
3. Click the green
CONFIRM button
4. Type the permission name in chat (e.g.,
vip)
5. Done! Items now require permission
simpleitemsperms.vip
Method 2: Using Commands
1. Hold the item in your hand
2. Run:
/sip give <player> <permission> 3. The item will be given to the player with the permission requirement
Pro Tips:
Use descriptive permission names like vip, mvip, elite
Group related items with the same permission
Set hide-for-permitted-players: true to hide lore from players who can use the item
1. Run
/sip gui 2. Place your VIP items in the GUI
3. Click confirm and type
vip 4. Give your VIP players the permission:
simpleitemsperms.vip 5. Only players with this permission can use those items!
The action will be blocked and the player will receive a message explaining they need the permission. A sound effect will play (configurable) to give clear feedback. The specific events blocked depend on your configuration (use, equip, consume, etc.).
Yes! SimpleItemsPerms works with any permission plugin that implements the Bukkit/Spigot permission system. This includes LuckPerms, PermissionsEx, GroupManager, and more.
Yes! SimpleItemsPerms works with any item, including:
Vanilla Minecraft items
Custom items from other plugins
Items with custom names/lore
Enchanted items
Items with custom NBT data
No. The lore is saved in the item when you create it. Only
new items will have lore in the new language. However,
the permission always works regardless of the lore language.
To update existing items:
1. Remove the permission:
/sip remove 2. Reassign the permission with the new language active
Yes! Permissions are stored in the item's NBT data using Minecraft's PersistentDataContainer system. They will survive:
Server restarts
Plugin reloads
World changes
Item trades between players
When you place a block, Minecraft removes all NBT data from that block. This is normal Minecraft behavior and affects all plugins. When you break the block, you'll get a vanilla item without the permission.
SimpleItemsPerms is perfect for: Weapons, armor, tools, food, potions, etc.
Not recommended for: Placeable blocks (they lose data when placed)
Yes! The message is defined in the language files (
lang/messages_XX_XX.yml) under the key
lore-no-permission. You can edit it to say whatever you want!
In
config.yml, under the
blocked-events section, set any event to
false to disable that check. For example:
Code (Text):
blocked-events:
use-item: true # Keep blocking use
drop: false # Allow dropping (so players can get rid of items)
pickup: true # Block pickup
1. Download
SimpleItemsPerms-1.1.0.jar 2. Place the file in your
plugins/ folder
3. Restart your server
4. Configure
plugins/SimpleItemsPerms/config.yml (optional)
5. Done! Use
/sip gui to get started