Download Time is up — Minecraft Mods — MetaMods
Time is up

Time is up

Active

Downloads

0

Last update

3 years ago
Client
Utils

Time is up

The "Time is up" modification introduces timers to every dimension in Minecraft. Now your world exploration is time-limited - you need to return to the portal before the countdown reaches zero, or your character will perish.

Timer System Operation

In each dimension, the timer begins its countdown from the moment you arrive. If you leave a dimension, its timer gradually restores, allowing you to revisit that location later. Each player has individual timers for all dimensions, ensuring fairness in multiplayer gameplay.

Configuration Settings

Through the configuration file, you can adjust:

5- Main time settings:

  • Maximum timer duration (default: 1 hour)

  • Starting time on first visit (default: 10 minutes)

  • Time restoration ratio in other dimensions (default: 4/1)

  • Set timers for specific dimensions

  • Choose dimensions without limitations (default: overworld)

  • Configure the player warning system

Special Items

  • Timer anchor - can be activated to fix the current timer status. Restores half of lost time. Recharged with ender pearls.
  • Timer bonus - adds 1 minute to the timer with a 1 minute 30 second cooldown.

*Note: Item characteristics may change in future updates.

CraftTweaker Integration (Optional)

For Minecraft 1.16.5

Available events for handling:

  • TickEvent - triggers each tick during all timer phases
  • DangerousEvent - dangerous phase
  • EmergencyEvent - critical phase
  • TimeIsUpEvent - time expired phase

You can cancel the mod's default effects by calling .cancel() in your script. Each event contains:

  • player - player data
  • world - world information
  • pos - coordinates
  • tick - current timer tick

For Minecraft 1.12.2

To work with events, you need to import EventManager:

import crafttweaker.events.timeisup.EventManager;
EventManager.getInstance().onDangerous(function(event as DangerousEvent){
    if(event.tick % 20 == 0) {
        print(event.player.name + " dangerous " + event.tick);
    }
});

Game Stages Integration (1.16 only)

You can "unlock" a dimension (remove the timer) by adding the corresponding stage to the player in the format: timeisup

Changelog

Version 1.3.0

  • Timer Ward now available in creative inventory
  • New potion effects:
    • Exile Effect - accelerates timer decrease
    • Doom Effect - summons mobs around the player (work in progress)
  • Boss system - defeating a boss temporarily disables all timers
  • Creatures can apply Exile effect

Version 1.3.2

  • New effect formats
  • Safe respawn configuration
  • CraftTweaker integration

Version 1.3.3

  • Doom effect spawn settings
  • Fixed mob spawning issue
  • Configurable cooldown period
  • Ported to version 1.12.2

Timer image

Timer end image

Time is up interface image

Crafting Recipes

Timer bonus Timer bonus recipe

Timer anchor Timer anchor recipe

Timer recharge Recharge recipe

Project members
NaturaSpell

NaturaSpell

Created: 26 Jul 2022

ID: 77605