💪Tag Effect/BUFF
Note
Free version can only set up to 3 tags enable tag effect, premium version don't have this limit.
libreforge Effects
If you want to a tag has libreforge effects, you need do those things:
Set
libreforge-hook
option inconfig.yml
totrue
.Set
effects.enabled
option in tag configs totrue
.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 totrue
.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
Add stats from MythicMobs plugin.
effects:
enabled: true
1:
type: MythicMobs
modifier-type: SET # ADD, SET, MULTIPLY, COMPOUND
stat: HEALTH
value: 100
2: # More effects...
AuraSkills
Add stats from AuraSkills plugin.
effects:
enabled: false
1:
type: AuraSkills
stat: HEALTH
value: 100
2: # More effects...
Condition
You can set condition for effects. Just try add conditions
section here.
effects:
enabled: true
1:
type: MythicLib
stat: MAX_HEALTH
value: 100
bypass-condition-after-equip: true
conditions:
1:
type: world
world: lobby
There is also a option called bypass-condition-after-equip
option available, if set to false
, plugin will auto remove effect if we found player no longer meet the condition of effect.
Effect Limit - Premium
Want to allow players equip multi prefixes but only 1 prefix effect actived, other prefix effect will not actived? Try this config!
effects:
enabled: true
1:
type: MythicLib
stat: MAX_HEALTH
value: 100
bypass-condition-after-equip: true
conditions:
1:
type: effected_prefix_amount
amount: 1
FAQ: Your effect not clear correctly?
This is usually caused by multiple plugins on your server attempting to change the player's basic attributes. For example, your server has installed MMOItems and EcoEnchants (which is a very common situation), both of which have the function of increasing the maximum health of players, which may lead to potential functional conflicts. This is not caused by our plugin, MythicPrefixes will clean up the added properties normally, but your other plugins mistakenly identifying the previous health as the player's true health and then adding it back.
Multi server sync plugin like HuskSync may also lead to this problem, try disable attriubute sync in those plugins.
Last updated