TimerAPI

TimerAPI

Plugin

An api easily create and coding as simple to timer.

Server AdventureGame MechanicsLibraryManagementMinigameUtility

199 downloads
1 follower
Createda year ago
Updated9 months ago

Follow Save
Host your Minecraft server on BisectHosting - get 25% off your first month with code MODRINTH.

timer-api

An api easily create and coding as simple to timer.

Features

  • On start, end and tick handling
  • Method chain
  • Some utility methods
  • Run timer as async

Usage

Add below to build.gradle.kts.

repositories {
    maven("https://repo.hirosuke.me/snapshots/")
}
dependencies {
    compileOnly("love.chihuyu:TimerAPI:1.4.1-SNAPSHOT")
}

Example

// this timer length is 180 * 20(1sec) = 3600tick(3min)
val timer = TimerAPI.build("wait ramen", duration = 180, period = 20, delay = 0)
    .start {
        hotWater.drip()
    }
    .tick {
        some()
    }
    .end {
        ramen.eat()
    }

timer.run()

External resources



Project members

hirosukt

Owner


Technical information

License
ARR
Project ID