
Tick Tok lib
Активный0.0
Установок
0
Последнее обновление
2 месяца назад
Клиент
Библиотеки
Утилиты
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
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);
}
}