mc-TimesAPI
🕐 TimesAPI - Revolutionary Task Scheduling for Spigot Plugins and for Java projects!
❓ What is TimesAPI?
⚡ Why TimesAPI for Spigot Development?
Traditional Bukkit Scheduler:
// Confusing tick calculations and verbose syntax
Bukkit.getScheduler().scheduleSyncRepeatingTask(plugin, () -> {
// Daily restart warning
}, 20L * 60 * 60 * 24, 20L * 60 * 60 * 24); // 24 hours in ticks - confusing!With TimesAPI:
TimesAPI scheduler = new TimesAPI();
scheduler.schedule("EVERYDAY @ 18:00", () -> {
Bukkit.broadcastMessage("§6Server restart in 1 hour!");
});⭐ Advanced Features for Plugin Developers
Annotation-Based Scheduling:
☀ Why Choose TimesAPI?
Last updated