CurseForge · Minecraft mod
Tick Tok lib
this lib converts ticks into milliseconds, seconds, minutes, and hours so you can develop your mod easier. it also comes with 2 features displays the ingame time and your system time.
Quick answer
Which Tick Tok lib release should I use?
Tick Tok lib ticktoklib-1.4.3.jar targets 1.21.1 with NeoForge. The project page does not say whether this file belongs on the client, dedicated server, or both. No extra mods listed for this file.
Where it goes
Is Tick Tok lib required on the client, server, or both?
The project page does not say whether this file belongs on the client, dedicated server, or both.
The source does not explicitly classify this release as client-only or server-only.
What else does Tick Tok lib ticktoklib-1.4.3.jar need?
ticktoklib-1.4.3.jar. Change the file and its required mods may change too.
This file does not list any required mods. Do not add a library just because a different file uses it.
This file does not list any required or optional mods.
Before you install it
Add Tick Tok lib without breaking your instance.
Built for Tick Tok lib ticktoklib-1.4.3.jar. Pick another file and the loader, install side or required mods may change.
- 01
Stick to this file
Use ticktoklib-1.4.3.jar. It targets 1.21.1 with NeoForge; another release may have different loader, side or dependency requirements.
- 02
Bring the mods it needs
This file does not list any required mods. Do not add a library just because a different file uses it.
- 03
Put it on the correct side
The project page does not say whether this file belongs on the client, dedicated server, or both.
- 04
Pick the file you checked
Use the “Get this file” button beside ticktoklib-1.4.3.jar. It opens that exact file at the source.
About this project
What does Tick Tok lib add?
this will change your developing experince by converting ticks into seconds so in your dev enviroment you can mod with ease instead of calculating in ticks you can code with seconds minuts or hours or both.
we also added 2 features it will display the game time ingame and your systems local time. you can turn it on or off and choose the placment in the configs area. you have to hold a clock to use it.
example is under me, i also suggest reading through the codebase to understand it more
package com.example.examplemod;
import com.thunder.ticktoklib.TickTokAPI;
/**
* Demonstrates how to use Tick Tock Lib to convert between Minecraft ticks and real-world time.
*/
public class TickTokExampleUsage {
public void runExamples() {
// Convert 10 seconds into ticks
int cooldownTicks = TickTokAPI.toTicks(10);
System.out.println("10 seconds = " + cooldownTicks + " ticks");
// Convert 3 minutes into ticks
int durationTicks = TickTokAPI.toTicksMinutes(3);
System.out.println("3 minutes = " + durationTicks + " ticks");
// Convert ticks back into hours, minutes, and seconds
int totalTicks = 54000; // Example: 45 minutes
float seconds = TickTokAPI.toSeconds(totalTicks);
float minutes = TickTokAPI.toMinutes(totalTicks);
float hours = TickTokAPI.toHours(totalTicks);
System.out.println("54000 ticks = " + seconds + "s = " + minutes + "m = " + hours + "h");
// Use full time duration on one line
int customDuration = TickTokAPI.duration(1, 25, 0); // 1 hour, 25 minutes
System.out.println("1h 25m = " + customDuration + " ticks");
// Format ticks into readable time
String asMinSec = TickTokAPI.formatTicksToMinSec(7280); // "6:04"
String asHMS = TickTokAPI.formatTicksToHMS(72800); // "1:00:40"
System.out.println("7280 ticks = " + asMinSec);
System.out.println("72800 ticks = " + asHMS);
}
}
Project description from CurseForge.
Pick your setup
Tick Tok lib by Minecraft version and loader
Choose the version and loader you play, then open the matching release.
Check the dependencies, then try the file in a copied instance before changing a world you care about.
Recent files
Tick Tok lib versions and loaders
ticktoklib-1.4.3.jar
19 Aug 2026
ticktoklib-1.4.2.jar
29 Jan 2026
ticktoklib-1.4.1.jar
26 Dec 2025
ticktoklib-1.4.0.jar
6 Dec 2025
ticktoklib-1.3.3.jar
20 Oct 2025
ticktoklib-1.3.2.jar
19 Oct 2025
ticktoklib-1.3.1.jar
18 Oct 2025
ticktoklib-1.3.0.jar
26 Jul 2025
ticktoklib-1.2.1.jar
24 Jul 2025
ticktoklib-1.2.0.jar
22 Jul 2025
ticktoklib-1.1.6.jar
22 Jul 2025
ticktoklib-1.1.5.jar
22 Jul 2025
Looking for an older file? The official CurseForge project page is in Resources.