If you want to evaluate an action for a specific amount of time.
For example, the player is not moving for at least 400ms.
MinimumAction<Boolean> notMoving = new MinimumAction<>(player::isMoving, (a, b) -> !a && !b, 400);
import com.runemate.game.api.script.Execution;
import...