AutoMessage Rotator Lite
A simple and lightweight plugin that allows automatic rotation of chat messages with per-world intervals and PlaceholderAPI support.
Quick challenge
How far can you run before the mobs catch you?
Minecraft check
Confirm your run
Complete the quick check to get your code.
AutoMessage Rotator Lite
AutoMessage Rotator Lite
A simple and lightweight plugin that allows automatic rotation of chat messages with per-world intervals and PlaceholderAPI support.
✨ Features
- 🌍 Smart sending - Custom messages for each world - ⏰ Smart sending - Custom intervals for each world - 🎨 Smart sending - Standard color code formatting - 🔌 Smart sending - Optional PlaceholderAPI support - 🔄 Smart sending - Messages are being automatically rotated - 👥 Smart sending - Messages are only being sent with players online
🎮 Commands
- `/automessage reload` - `/automessage status` - `/automessage info` - `/automessage help`
🔐 Permissions
- `automessage.admin` - Admin access to all comamnds (default: op)
🔌 PlaceholderAPI support
```yaml messages: - "&Hello &e%player_name%&6!" - "&7Online players: &a%server_online%" - "&bTime: &f%server_time_HH:mm:ss%" - "&dTPS: &e%server_tps_1%" ```
API Hooks
Easy API access for other plugins to use:
```java AutoMessageRotatorLite plugin = (AutoMessageRotatorLite) Bukkit.getPluginManager().getPlugin("AutoMessageRotatorLite");
// Get world messages Map<String, List<String>> worldMessages = plugin.getWorldMessages();
// Get world intervals Map<String, Integer> intervals = plugin.getWorldIntervals();
// Check PAPI support boolean papiEnabled = plugin.isPapiEnabled();
// Reload plugin plugin.reloadPlugin(); ```