Add Socket


Add Socket

The Gem Add Socket feature lets you add sockets to desired items, with customization options based on the available features.

Add Socket Gui

Features

1. Material Item

You can use Material Items to add sockets to your items. You can also enable material-chance to introduce a success/failure chance for adding sockets. You're able to add more than one item to the list.

materials:
  enabled: true
  material-chance: true
  addsocket:
    - type: MATERIAL # Item type (MATERIAL, MMOITEM)
      id: STEEL_INGOT # Item ID
      amount: 1
      chance: 50
    - type: MATERIAL # Item type (MATERIAL, MMOITEM)
      id: RARE_DIAMOND # Item ID
      amount: 1
      chance: 50

2. Add Socket Case

2.1 Default Add Socket

This method adds sockets to items up to a maximum defined by max-sockets for all items.

default-add-socket:
    socket-color: "Uncolored" #Default value is ANY, but if using a colored GEM STONE, that color will be the primary one.
    max-sockets: 50
    

#default
socket-color: "Uncolored"

#random
socket-color:
      - "Uncolored"
      - "Red"
      - "Blue"
      - "Green"

2.2 Tiers Add Socket

This method checks the Tier of the item you're adding sockets to. If it matches any condition in the tier-list, items with that Tier will reference their max-sockets setting. You can add more than one Tier to the list.

tiers-add-socket:
    enabled: false
    socket-color: "Uncolored"
    no-tier-max-sockets: 50
    tier-list:
      - tier: COMMON
        max-sockets: 3
      - tier: RARE
        max-sockets: 5

3. Cost Add Socket

This feature allows you to use Vault (Money) for each socket addition.

cost-add-socket:
    enabled: false #Cost
    amount: 5000

4. Remove Durability When Fail

If you fail to add a socket, your item's durability will be completely removed.

remove-durability-when-fail: 
    enabled: true

5. Destroy Item When Fail

If an item upgrade fails, the item will be replaced with a predefined material.

destroy-item-when-fail:
  enabled: false
  item-return:
    type: MATERIAL # Item type (MATERIAL, MMOITEM)
    id: STEEL_INGOT # Item ID
    amount: 1

6. Applies To

You can specify more than one MMOItem type that this configuration applies to.

applies-to:
  - SWORD
  - PICKAXE

Last updated