Tested Minecraft Versions:
Niall7459
This plugin only supports Spigot 1.9.2+
Need Help? Please PM Me.
Features:
- Over 40+ configurable particle effects.
- In game Animation Builder
- Smooth and beautiful trails when gliding.
- You can set colours for particle effects that support it
- You can set change radius, count, and speed.
- You can have multiple particle trails running.
- You can create animations/patterns with customisable colours, sizes and lots more.
- GUI Selector Panel
- Per player particle setting + saving + toggling.
- Support for players to toggle their trail on and off.
- database for saving player effect data.
- Customise particle sizes, speed and more.
- Tweak settings to your own needs.
Screenshots:
PATTERN/ANIMATION BUILDER NEW!
Commands:
Code (Text):
- 1.9
- 1.10
- 1.11
- 1.12
Niall7459
This plugin only supports Spigot 1.9.2+
Need Help? Please PM Me.
Features:
- Over 40+ configurable particle effects.
- In game Animation Builder
- Smooth and beautiful trails when gliding.
- You can set colours for particle effects that support it
- You can set change radius, count, and speed.
- You can have multiple particle trails running.
- You can create animations/patterns with customisable colours, sizes and lots more.
- GUI Selector Panel
- Per player particle setting + saving + toggling.
- Support for players to toggle their trail on and off.
- database for saving player effect data.
- Customise particle sizes, speed and more.
- Tweak settings to your own needs.
Screenshots:
PATTERN/ANIMATION BUILDER NEW!
Commands:
Code (Text):
Code:
/elytra - View plugin information.
/elytra gui - Open GUI selector.
/elytra set <particle> [player] - Set particle effect/animation pattern.
/elytra color [player] - Set particle color*
/elytra colors - View all colors.
/elytra patterns - View all patterns/animations.
/elytra particles - View all supported particles.
/elytra reload - reload config.
/elytra toggle [player] - toggle effects.
/elytra on [player] - turn elytra particles on
/elytra off [player] -turn elytra particles off.
[B]Permissions:[/B]
[B]elytra-particles[I].<command>[/I][/B] - Allow access to <command>.
[B]elytra-particles.gui[/B] - Allows GUI Access using /ep
[B]elytra-particles.creator[/B] - Use pattern builder
[B]elytra-particles.admin
elytra-particles.*[/B] - Allow access to all commands
[B]Per permissions:
elytra-particles.particle[I].<particle name>[/I][/B] - Allow usage of <> particle.
[B]elytra-particles.pattern[I].<pattern name>[/I][/B] - Allow usage of <> pattern.
[B]elytra-particle.particle.*[/B] - Allow access to all particles
[B]REV2 Walkthrough / Setup:[/B]
1. Drag the jar to the plugins folder.
2. Restart your server.
3. Open the configuration file.
[IMG]https://www.spigotmc.org/attachments/screen-shot-2016-06-07-at-15-58-18-png.140278/[/IMG]
In the "general default" section you can see that the value is "pattern:example", this means that the default trail is linked to a pattern/animation.
Below in the "patterns" section there is a pattern named "example"
each frame in a pattern should be written in a frame format, I guess you could say similar to JSON:
{<key>=<value>[B];[/B]<nextkey>=<nextvalue>}
[B]Supported keys:[/B]
"particle" - particle type (use /ep particles to see supported)
"color" - color of particles (requires color supporting particles)
"count" - amount of particles (nothing higher than 50 reccomended)
"speed" - speed of particles (default 0.01)
"radius" - radius (in blocks) that the trail can be seen by other players.
For example:
Code (Text):
{particle=reddust;color=pink}
You can combine these to make pretty animations:
Code (Text):
patterns:
rainbow-pattern:
frames:
- "{particle=reddust;color=red}"
- "{particle=reddust;color=orange}"
- "{particle=reddust;color=yellow}"
- "{particle=reddust;color=green}"
- "{particle=reddust;color=blue}"
- "{particle=reddust;color=purple}"
To use multiple particle effects together use:
Code (Text):
patterns:
combined-particles:
frames:
- "{particle=reddust;color=orange}"
- "{particle=flame;count=10;speed=0.01}"