Permissions
Complete permission node reference for ClothesPlus with LuckPerms setup examples.
Default Permissions: Most permissions default to op. Use a permission plugin like LuckPerms to grant permissions to non-op players.
Core Permissions
| Permission | Description | Default |
|---|---|---|
wardrobeclothes.use | Allows use of /clothes and /wardrobe commands | op |
wardrobeclothes.outfits | Allows opening the outfit GUI via /outfits | op |
wardrobeclothes.npc | Allows starting NPC preview via /npcpreview | op |
wardrobeclothes.reset | Allows resetting skins and overlays | op |
Admin Permissions
| Permission | Description | Default |
|---|---|---|
wardrobeclothes.admin | Admin-level actions: reload, update notifications, target other players | op |
wardrobeclothes.config.reload | Allows reloading configuration files | op |
wardrobeclothes.overlay.extract | Allows extracting bundled overlays | op |
Creator Permissions
| Permission | Description | Default |
|---|---|---|
wardrobeclothes.create | Allows entering creator mode (/clothes cursor start) | op |
wardrobeclothes.exit | Allows exiting creator mode | op |
clothesplus.cursor.use | Allows using the cursor creator | true |
clothesplus.cursor.reload | Allows reloading cursor creator config | op |
clothesplus.cursor.admin | Allows cursor creator admin commands | op |
Token Permissions
| Permission | Description | Default |
|---|---|---|
wardrobeclothes.addtoken | Allows adding tokens to players | op |
wardrobeclothes.removetoken | Allows removing tokens from players | op |
Cache & Other Permissions
| Permission | Description | Default |
|---|---|---|
wardrobeclothes.cache | Allows managing cache systems | op |
wardrobeclothes.cache.clear | Allows clearing all cache systems | op |
wardrobeclothes.cache.shared | Allows managing shared cache | op |
wardrobeclothes.cache.creator | Allows managing creator cache | op |
wardrobeclothes.cache.baseskin | Allows managing base skin cache | op |
wardrobeclothes.mysql | Allows managing MySQL operations | op |
wardrobeclothes.autofit | Allows toggling auto-fitting system | op |
wardrobeclothes.skintone | Allows managing skin tone detection | op |
wardrobeclothes.npcpreview.other | Allows previewing another player's skin | op |
wardrobeclothes.editor | Allows access to the overlay editor web panel | op |
LuckPerms Setup Examples
Basic Player Setup
Give all players access to the wardrobe and outfits:
bash
# Give all players access to wardrobe and outfits
/lp group default permission set wardrobeclothes.use true
/lp group default permission set wardrobeclothes.outfits true
/lp group default permission set wardrobeclothes.npc true
/lp group default permission set wardrobeclothes.reset true
VIP / Donor Setup
VIP group with character creator access:
bash
# VIP group with character creator access
/lp group vip permission set wardrobeclothes.use true
/lp group vip permission set wardrobeclothes.outfits true
/lp group vip permission set wardrobeclothes.npc true
/lp group vip permission set wardrobeclothes.create true
/lp group vip permission set wardrobeclothes.exit true
Admin Setup
Admin group with all permissions:
bash
# Admin group with all permissions
/lp group admin permission set wardrobeclothes.* true
Use LuckPerms inheritance to avoid repeating permissions. For example, if vip inherits from default, VIPs automatically get all default permissions plus their own extras.