nwPlugin | NN
  • Introduction
    • Community & Support
  • My Plugins
    • nwMMOUpgrade
      • English
        • Config & Command
        • Feature
          • Upgrade
          • Add Socket
          • Repair
      • Chinese
        • 配置與指令
        • 功能介紹
          • 升級
          • 增加插槽
          • 修復
    • nwFurnitureShow
      • English
        • Supported Plugins
        • Config & Command
        • Feature
          • Preview
          • Search
          • Price
          • Dye (HMCColor Integration)
Powered by GitBook
On this page
  1. My Plugins
  2. nwMMOUpgrade
  3. Chinese
  4. 功能介紹

增加插槽

Previous升級Next修復

Last updated 2 days ago


增加插槽(Add Socket)

寶石插槽增加功能讓你為指定物品增加插槽,並可依照可用功能進行自訂設定。

Features

1. 升級材料(Material Item)

你可以使用升級材料來為裝備添加插槽,也可以啟用 material-chance,加入插槽增加的成功/失敗機率。你可以設定多種材料道具供使用。

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)

此方式會為裝備增加插槽,直到達到設定的最大插槽數(max-sockets),適用於所有裝備類型

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

2.2 Tiers插槽添加(Tiers Add Socket

此方式會檢查要增加插槽的物品所屬的Tier,若符合 tier-list 中的任一條件,該 Tier 對應的物品將使用其指定的 max-sockets 限制,你可以在列表中加入多個 Tier

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)

此功能可讓每次增加插槽時消耗 Vault 金錢作為費用

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

4. 失敗時移除耐久(Remove Durability When Fail)

若增加插槽失敗,該物品的耐久度將會被完全移除

remove-durability-when-fail: 
    enabled: true

5. 升級失敗銷毀物品(Destroy Item When Fail)

若插槽增加失敗,該物品將被替換為預先設定的指定材料

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

6. 適用物品類型(Applies To)

你可以指定多種 MMOItem 類型套用此插槽設定

applies-to:
  - SWORD
  - PICKAXE
Add Socket Gui