Skip to content

Creating Cosmetic Set

sachin edited this page Nov 5, 2021 · 4 revisions

As of you know how to create a single cosmetic item from Creating Cosmin item, lets move on creating a entire set which appears when we right click the cosmetic sets button in Cosmin GUI
Similar to cosmin items sets can also be created under items folder in yml syntax
All options for a cosmetic set are

First-set:
  type: SET
  icon:
  permission:
  allow-cross-match:
  items:
    HEAD:
    CHEST:
    LEGS:
    FEET:
    OFFHAND:
  • type:
    • to identify the section as set, SET is used as type
  • icon:
    • icon item that represents the entire set in paged gui, when player clicks this item, it equips entire set to player.
  • cost:
    • what should be the cost of item when in shop menu (this option requires vault and economy plugin like Essentials or CMI).
  • permission:
    • same as cosmin item, if this string is, only the player with given permission can see the set from list.
  • allow-cross-match:
    • if set to false, player will not able to clear the set items individually.
  • items:
    • list of items with respective slots that will make up the entire set.

Example set:

Cherry-set:
  type: SET
  icon: Cherry-helmet
  items:
    HEAD: Cherry-helmet
    CHEST: Cherry-chestplate
    LEGS: Cherry-leggings
    FEET: Cherry-boots
    OFFHAND: Crimson-shield


Clone this wiki locally