GlowSpell - TheComputerGeek2/MagicSpells GitHub Wiki
spell-class: ".targeted.GlowSpell"
[!WARNING] Since 4.0 Beta 17
targeting
cast argument values:
Value | Supported |
---|---|
entity |
true |
location |
false |
entity_from_location |
false |
Description:
This spell causes the targeted entity to glow. You can install the packetevents
plugin to ensure better compatibility with other plugins.
Shortcomings:
Interactions with Scoreboard Teams
GlowSpell's color
option relies on scoreboard teams to change the target's glow color. As such, mechanics that rely on the use of scoreboard teams can have issues when colored glows are applied. Potential conflicts can arise when attempting to:
- Disable player nametags.
- Disable player collisions.
- Allow viewing the "ghosts" of invisible players.
Such issues can generally be fixed by adjusting the options present in the glow-spell-scoreboard-teams
section of general.yml
.
Lib's Disguises
- Self disguises:
- Players can collide with their self-disguise if they are visible. This can be avoided by setting
collision-rule: never
, under theglow-spell-scoreboard-teams
section ofgeneral.yml
- Players can collide with their self-disguise if they are visible. This can be avoided by setting
- Disguising as a player:
- If you disguise as an already online player, issues can arise if you have
PlayerNames: VANILLA
configured in thedisplays.yml
config file of Lib's Disguises.
- If you disguise as an already online player, issues can arise if you have
Configuration:
Since 4.0 Beta 13 these options support dynamic values through numeric or string expressions.
Option | Description | Type | Default |
---|---|---|---|
key |
Specifies an optional namespaced key for the glow. The glow with the same key overrides each other. | Namespaced Key | |
color |
Optionally specifies the glow's color. | Color Name (e.g. dark_aqua ) |
|
global |
Specifies whether the glow is only visible to the caster, or all players. | Boolean | true |
remove |
When true , the glow specified by key will instead be removed - no option other than key and global will be relevant when removing a glow. |
Boolean | false |
duration |
Duration specified in ticks before the glow expires. Set to 0 to define an infinite duration. | Integer | 0 |
priority |
Specifies the priority of the glow. The glow with the highest priority will be applied. | Integer | 0 |
Example:
glow:
spell-class: ".targeted.GlowSpell"
key: example:glow
color: red
global: true
duration: 200
priority: 20
glow/remove:
spell-class: ".targeted.GlowSpell"
key: example:glow
global: true
remove: true