Setup
Animator is a powerful and flexible Spigot plugin that allows server administrators to create dynamic, animated placeholders for use with PlaceholderAPI.
Installation
Ensure you have PlaceholderAPI installed on your server.
Download the latest version of Animator from the releases page.
Place the downloaded JAR file in your server's
plugins
folder.Restart your server or run the command
/reload confirm
if you have PlugMan installed.The plugin will generate a default configuration file. You can customize this in the next step.
Configuration
The plugin's configuration is stored in plugins/Animator/config.yml
. Here's an example configuration with explanations:
Each placeholder is defined by a unique key (e.g., admin
, vip
) and has the following properties:
speed
: The update interval in milliseconds.type
: The animation type (cycle, random, or blink).permission
: (Optional) The permission required to see the placeholder.text
: A list of text strings to animate through.
Usage
Once configured, you can use the placeholders anywhere PlaceholderAPI is supported. The format is:
For example:
%animator_admin%
would display the animated admin tag.%animator_announcement%
would cycle through your server announcements.
You can use these in plugins like TAB, chat formatting plugins, scoreboard plugins, or any other place that supports PlaceholderAPI.
Commands and Permissions
/Animatorreload
Animator.reload
Reloads the plugin configuration
Placeholder Types
Animator supports three types of animations:
Cycle: Rotates through the list of texts in order, looping back to the start when it reaches the end.
Random: Randomly selects a text from the list each time the placeholder updates.
Blink: Alternates between the first text in the list and an empty string, creating a blinking effect.
Choose the type that best fits your needs for each placeholder.
Troubleshooting
If you're experiencing issues with Animator, try these steps:
Ensure PlaceholderAPI is installed and up to date.
Check the server console for any error messages related to Animator.
Verify that your
config.yml
is correctly formatted.Try reloading the plugin with
/ap reload
.If issues persist, check the FAQ or reach out for support.
FAQ
Q: How do I use RGB colors? A: Use the hex color format: &#RRGGBB
. For example, &#FF0000
for red.
Q: Can I use multiple placeholders in one message? A: Yes, you can use as many placeholders as you need in a single message.
Q: How often do placeholders update? A: Each placeholder updates based on its configured speed
in milliseconds.
Q: Can I add more placeholder types? A: The current version supports cycle, random, and blink. For additional types, please suggest them as a feature request on our GitHub issues page.
We hope you find Animator useful for your server! If you have any questions or suggestions, please don't hesitate to open an issue on our GitHub repository.
Last updated