CooldownLib
No reviews yet
A lightweight Fabric library that makes adding cooldown systems to Minecraft mods simple. Create, manage, and customize cooldowns with an easy-to-use API. Simple cooldowns. Clean code.
Provides a framework or library for other mods to use.
Fabric is a mod loader for versions 1.14+ of Minecraft, particularly popular for client side and optimization mods.
Community voices
Reviews
Click once to include, again to exclude, again to clear
No reviews yet. Be the first to review this project!
Get it on
Available Platforms
Compatibility
Supported Environments
About
Project Details
For authors
Embed Badge
If you're the author of this project, you can embed a live badge anywhere that supports HTML or Markdown. It updates automatically whenever ratings change.
Use HTML for any page that supports it, or Markdown for README files and Markdown-based descriptions.
Identifiers
Platform IDs
Resources
External Links
About
Description
CooldownLib is a simple and lightweight Fabric library that allows Minecraft mod developers to easily add cooldown systems to their mods.
Instead of creating custom timers, HashMaps, and tick logic for every ability or item, CooldownLib provides a clean and easy-to-use API for managing cooldowns.
Example:
Cooldown.trigger(player)
.key("fireball")
.ticks(20 * 10)
.message("§cFireball is still on cooldown!")
.run(() -> {
castFireball();
});
CooldownLib automatically handles:
Cooldown storage Multiple cooldowns per player Time calculation Cooldown expiration Custom cooldown messages Features
✅ Simple and readable Fluent API
✅ Multiple cooldowns per player
✅ Tick-based cooldown system
✅ Custom cooldown keys
✅ Custom cooldown messages
✅ Lightweight and easy to integrate
Many Minecraft mods need cooldown systems for:
Abilities Spells Weapons Special attacks Items Machines Custom mechanics
Without a library, developers often have to create their own cooldown handling system again and again.
CooldownLib provides a clean and reusable solution, allowing developers to focus on creating their gameplay features instead of rewriting cooldown code.
Installation
Add CooldownLib as a dependency to your Fabric mod.
Import:
import com.cooldown.lib.Cooldown;
Example:
Cooldown.trigger(player)
.key("dash")
.ticks(200)
.message("§cDash is still charging!")
.run(() -> {
performDash();
});
API Usage Create a Cooldown
Cooldown.trigger(player)
.key("ability")
.ticks(100)
.message("Ability is unavailable!")
.run(() -> {
// Your action here
});
Check a Cooldown
Cooldown.active(player, "ability");
Remove a Cooldown
Cooldown.clear(player, "ability");
Supported Versions
Minecraft: 1.21.11 Loader: Fabric Language: Java
Screenshots
Gallery
Versions
Files
Relations
Project Relations
More like this
Similar Mods
Suggestions use data such as tags, dependencies, dependents, descriptions, titles, and more to rank how much they overlap with this mod.
On ModDex
Community snapshot
By the numbers
Statistics
Want to reach Minecraft players?
We're looking for a server hosting partner to feature here and other parts of the site. Interested? Send us a message!
Get in touchGet it on
Available Platforms
On ModDex
Community snapshot
By the numbers
Statistics
Resources