Repair

Repair

The Repair feature allows you to repair your items through a GUI. You can repair multiple items by placing them into the GUI.

Repair GUI

How Repair Works

The Repair function works only when the player places the item they wish to repair into the GUI. The behavior and permissions for which items can be repaired can be fully configured in the plugin's configuration file.

Permission

Each station has its own permission requirement in order to be used. Of course, you can customize or change the permission to suit your needs.

settings:
  permission: nwmmoupgrade.repair.2in1

Features

1. Filter Type Applies To

When enabled, this will only filter for types that match those defined in applies-to (for MMOItems).

settings:
  filter-type-applies-to: false # true/false: Filter MMOItems to only those whose type is in 'applies-to'

2. Allow Vanilla Item

When enabled, you will be able to repair Vanilla Minecraft items within this GUI.

settings:
  allow-vanilla-item: true # true/false: Allow vanilla items to be repaired

3. Cost Repair Item

This feature allows you to use Vault (Money) for each Upgrade addition. And it also supports using custom placeholders from the system itself.

cost:
    enabled: false #Cost
    amount: 5000
    amount-vanilla: 100 # not support custom placeholders
cost:
    enabled: true # Enable/disable cost system
    amount: "{repair_custom_cost}" # cost amount
    amount-vanilla: 100 # not support custom placeholders

4. Applies To

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

applies-to:
  - SWORD
  - PICKAXE

Last updated