Effect Lib Plugin gives other tools the power to show cool visual animations in the game. It works behind the scenes to handle particles, flying colors, and special events. The package packs a big collection of ready-to-use visuals that other server additions can borrow. You only need to put this on your server if another tool asks for it.

Effect Lib Plugin

Features:

  • Provides a large collection of built-in visual animations for the game.
  • Lets other tools attach special visuals directly to players or monsters.
  • Places animations at specific spots in the world using map coordinates.
  • Draws lines of particles between two different points to connect them.
  • Stops all running animations at once to keep the game running smoothly.
  • Works as a background building block for other server additions.

How to Use:

  1. Link the library to your coding project.
  2. Create an EffectManager in the code to handle the animations.
  3. Pick an animation, set its target, and call the start command.
  4. Close the manager when the task finishes to clean up.
EffectManager em = new EffectManager(plugin);
Effect effect = new BleedEffect(em);
effect.setEntity(target);
effect.start();
em.dispose();

Effect Lib Plugin Download Links

Filter by

For Minecraft 1.21.11, 1.21.10, 1.21.9

For Minecraft 1.16.5, 1.16

For Minecraft 1.12.2, 1.12

For Minecraft 1.8.9, 1.8

Click to rate this post!
[Total: 0 Average: 0]