Home Discord Store Get ClothesPlus Login
Esc

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

PermissionDescriptionDefault
wardrobeclothes.useAllows use of /clothes and /wardrobe commandsop
wardrobeclothes.outfitsAllows opening the outfit GUI via /outfitsop
wardrobeclothes.npcAllows starting NPC preview via /npcpreviewop
wardrobeclothes.resetAllows resetting skins and overlaysop

Admin Permissions

PermissionDescriptionDefault
wardrobeclothes.adminAdmin-level actions: reload, update notifications, target other playersop
wardrobeclothes.config.reloadAllows reloading configuration filesop
wardrobeclothes.overlay.extractAllows extracting bundled overlaysop

Creator Permissions

PermissionDescriptionDefault
wardrobeclothes.createAllows entering creator mode (/clothes cursor start)op
wardrobeclothes.exitAllows exiting creator modeop
clothesplus.cursor.useAllows using the cursor creatortrue
clothesplus.cursor.reloadAllows reloading cursor creator configop
clothesplus.cursor.adminAllows cursor creator admin commandsop

Token Permissions

PermissionDescriptionDefault
wardrobeclothes.addtokenAllows adding tokens to playersop
wardrobeclothes.removetokenAllows removing tokens from playersop

Cache & Other Permissions

PermissionDescriptionDefault
wardrobeclothes.cacheAllows managing cache systemsop
wardrobeclothes.cache.clearAllows clearing all cache systemsop
wardrobeclothes.cache.sharedAllows managing shared cacheop
wardrobeclothes.cache.creatorAllows managing creator cacheop
wardrobeclothes.cache.baseskinAllows managing base skin cacheop
wardrobeclothes.mysqlAllows managing MySQL operationsop
wardrobeclothes.autofitAllows toggling auto-fitting systemop
wardrobeclothes.skintoneAllows managing skin tone detectionop
wardrobeclothes.npcpreview.otherAllows previewing another player's skinop
wardrobeclothes.editorAllows access to the overlay editor web panelop

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.