MythicPrefixes Wiki
  • 🎉Welcome
  • 📦Info
    • ✅Requirements
    • ⚙️Install
    • 🔗Compatibility
    • 🛠️Configuration files
    • ⌨️Commands
    • ❓FAQ
    • 🆚Compare
  • 📋Format
    • 📝ItemFormat™ (Simply version)
    • 🎬Action Format
    • ⚖️Condition Format
  • 📍Tags
    • 🏷️Tags
    • 🖥️Display placeholder
    • 💪Tag Effect/BUFF
    • 📋Tag GUI
    • 👥Tag Group - Premium
  • ✨Features
    • 🎨Color Code
Powered by GitBook
On this page
  • libreforge Effects
  • Built-in Effects
  • MythicLib
  • MythicMobs - Premium
  • AuraSkills - Premium
  1. 📍Tags

💪Tag Effect/BUFF

libreforge Effects

If you want to a tag has libreforge effects, you need do those things:

  • Set libreforge-hook option in config.yml to true.

  • Set effects.enabled option in tag configs to true.

  • Add effects at config.yml's libreforge-effects option. Please note that effect ID must same as tag ID.

An example:

libreforge-effects:
  - id: default # Effect ID
    effects:
      - id: bonus_health
        args:
          health: 40
      - id: damage_multiplier
        args:
          multiplier: 4.0
        triggers:
          - melee_attack
    conditions: []

Built-in Effects

If you want to a tag has built-in effect bonus, you need do those things:

  • Set effects.enabled option in tag configs to true.

  • Add below contents at your tag config if it is not exist.

  • If you removed BUFF here, you need to restart the server.

MythicLib

Add stats from MythicLib plugin. (Support stats from MMOCore, MMOItems)

effects:
  enabled: true
  1: 
    type: MythicLib
    stat: MAX_HEALTH # Stat ID
    value: 1 # Add value
  2: # More effects...

MythicMobs - Premium

Add stats from MythicMobs plugin.

If you are getting NoSuchMethod error, this means you are using old version of MythicMobs, you need update it to LATEST. By default, all stats exist in MythicMobs are disabled, you need enable them in plugins/MythicMobs/stats.yml file or other stat configs.

effects:
  enabled: true
  1: 
    type: MythicMobs
    modifier-type: SET # ADD, SET, MULTIPLY, COMPOUND
    stat: HEALTH
    value: 100
  2: # More effects...

AuraSkills - Premium

Add stats from AuraSkills plugin.

Since AuraSkills is saving the stat modifier, so if your server crash, prefix config change or other situations where the player's stat may not be cleared properly. Although MythicPrefixes consider this problem, if it still occur in your server: You can try restarting the server. If this does not solve the problem, you will have to use the /skills modifier removeall command for every players.

effects:
  enabled: false
  1:
    type: AuraSkills
    stat: HEALTH
    value: 100
  2: # More effects...
Previous🖥️Display placeholderNext📋Tag GUI

Last updated 2 months ago