Earlier Versions
| Name | Size | Uploaded | Game Version | Downloads | |
| TimeIsUp-1.16-1.5.3.jar release | 150.50 KB | Jul 26, 2022 | 1.16.5 | 0 | Download |
| TimeIsUp-1.12-1.5.3.jar release | 143.57 KB | Jul 26, 2022 | 1.12.2 | 0 | Download |
| TimeIsUp-1.12-1.5.2.jar release | 142.85 KB | Nov 1, 2021 | 1.12.2 | 786 | Download |
| TimeIsUp-1.16-1.5.2.jar release | 150.48 KB | Oct 27, 2021 | 1.16.5 | 328,340 | Download |
| TimeIsUp-1.12-1.5.1.jar release | 135.38 KB | Oct 27, 2021 | 1.12.2 | 82 | Download |
| TimeIsUp-1.16-1.5.1.jar release | 142.21 KB | Oct 24, 2021 | 1.16.5 | 72 | Download |
| TimeIsUp-1.12-1.5.0.jar release | 127.22 KB | Sep 22, 2021 | 1.12.2 | 190 | Download |
| TimeIsUp-1.16-1.5.0.jar release | 138.85 KB | Sep 18, 2021 | 1.16.5 | 73,033 | Download |
| TimeIsUp-1.16-1.4.2.jar release | 132.09 KB | Jul 14, 2021 | 1.16.5 | 117,832 | Download |
| TimeIsUp-1.12-1.4.2.jar release | 123.53 KB | Jul 14, 2021 | 1.12.2 | 226 | Download |
| TimeIsUp-1.16-1.4.1.jar release | 132.07 KB | Jun 3, 2021 | 1.16.5 | 930 | Download |
| TimeIsUp-1.12-1.4.1.jar release | 123.52 KB | Jun 3, 2021 | 1.12.2 | 197 | Download |
| TimeIsUp-1.12-1.3.3b.jar release | 123.19 KB | May 14, 2021 | 1.12.2 | 84 | Download |
| TimeIsUp-1.16-1.4.0.jar release | 131.72 KB | Apr 26, 2021 | 1.16.5 | 1,418 | Download |
| TimeIsUp-1.16-1.3.3.jar release | 124.54 KB | Apr 11, 2021 | 1.16.5 | 110,881 | Download |
| TimeIsUp-1.12-1.3.3.jar release | 123.16 KB | Apr 11, 2021 | 1.12.2 | 68 | Download |
| TimeIsUp-1.16-1.3.2.jar release | 122.81 KB | Apr 8, 2021 | 1.16.5 | 61 | Download |
| TimeIsUp-1.12-1.3.1.jar release | 112.05 KB | Apr 6, 2021 | 1.12.2 | 60 | Download |
| TimeIsUp-1.16-1.3.1.jar release | 117.39 KB | Apr 6, 2021 | 1.16.5 | 371 | Download |
| TimeIsUp-1.16-1.3.0.jar release | 117.13 KB | Apr 4, 2021 | 1.16.5 | 248 | Download |
| TimeIsUp-1.16-1.2.1.jar release | 108.99 KB | Mar 24, 2021 | 1.16.5 | 140 | Download |
| TimeIsUp-1.16-1.1.0.jar release | 77.14 KB | Feb 20, 2021 | 1.16.5 | 16,185 | Download |
| TimeIsUp-1.16-1.0.0.jar release | 23.06 KB | Jan 18, 2021 | 1.16.5 | 6,857 | Download |
| TimeIsUp-1.16-1.2.0.jar beta | 107.57 KB | Mar 11, 2021 | 1.16.5 | 17,728 | Download |
Screenshots
Description
Time is up adds a timer to each dimensions in the game.
Your exploration is now limited in time. Quickly get back to your portal before the timer reaches 00:00 if you don't want to die !
The timer for the dimension you are in decreases until reaches 00:00.
Each dimension recovers its time while you are not in.
Each player has their own timer for each dimension.
Configurations
The config file allows you to modify :
– The max timer duration by default. (set to 1 hour by default)
– The timer duration by default when the player enter the dimension for the first time. (set to 10 minutes by default)
– The time to spend in another dimension to recover time for the timer. (set to 4/1 by default)
– The timer for a specific dimension.
– The dimensions that have no timer. (the overworld by default)
– Some features related to player warning.
Items
Timer anchor : can be set to your current timer. You gain half the passed time on use and cooldown is set to 2 times the passed time. Can be refilled with ender pearls.
Timer bonus : adds 1 minute to your timer. cooldown of 1 minute and 30 seconds.
These items could change in futur updates.
CraftTweaker (optional)
MC 1.16.5
These events can be imported :
- crafttweaker.api.event.timeisup.TickEvent : Fired each tick for each timer phase (dangerous, emergency and time is up).
- crafttweaker.api.event.timeisup.DangerousEvent : Fired each tick for 'dangerous' phase.
- crafttweaker.api.event.timeisup.EmergencyEvent : Fired each tick for 'emergency' phase.
- crafttweaker.api.event.timeisup.TimeIsUpEvent : Fired each tick for 'time is up' phase.
.
You can catch these events to customize the effects of the corresponding phase. CraftTweaker wiki page : https://docs.blamejared.com/1.16/en/vanilla/api/event/CTEventManager/
call .cancel() to disable default effects of the mod. CraftTweaker wiki page : https://docs.blamejared.com/1.16/en/vanilla/api/event/MCEvent/
Each event has the properties :
- player : https://docs.blamejared.com/1.16/en/vanilla/api/entity/MCPlayerEntity/
- world : https://docs.blamejared.com/1.16/en/vanilla/api/world/MCWorld/
- pos : https://docs.blamejared.com/1.16/en/vanilla/api/util/BlockPos/
- tick : current tick of the timer. (int)
.
MC 1.12.2
To catch time is up events, you have to import the custom EventManager : import crafttweaker.events.timeisup.EventManager;
The EventManager functions are :
- onDangerous : for crafttweaker.api.event.timeisup.DangerousEvent
- onEmergency : for crafttweaker.api.event.timeisup.EmergencyEvent
- onTimeIsUp : for crafttweaker.api.event.timeisup.TimeIsUpEvent
- onTimerTick : for crafttweaker.api.event.timeisup.TickEvent
How to catch events : https://docs.blamejared.com/1.12/en/Vanilla/Events/IEventManager/
(Replace "events" by "EventManager.getInstance()")
Example :
import crafttweaker.api.event.timeisup.DangerousEvent;
import crafttweaker.events.timeisup.EventManager;
EventManager.getInstance().onDangerous(function(event as DangerousEvent){
if(event.tick % 20 == 0) {
print(event.player.name + " dangerous " + event.tick);
}
});
Will print the player name with "dangerous" and the current timer tick in CraftTweaker logs every second.
Game Stages (optional) (1.16 only)
You can "unlock" a dimension (remove the timer) by adding the corresponding stage to the player.
– Stage format : timeisup_<modid>_<dimension_name>
– Example : for the nether with the id "minecraft:the_nether", the corresponding game stage is "timeisup_minecraft_the_nether".
Changelog 1.3.0
– Timer Ward is now available in creative inventory.
– New potion effects :
- Exile Effect : Accelerates the timer decrease.
- Doom Effect : Mobs are summoned around the player during this effect. (WIP)
– Boss : You can choose a boss in configs. All timers are disabled for the player who killed the boss.
– Every entity has a chance to give Exile Effect to the player who killed it. Chances and strength of the effect are configurable.
Changelog 1.3.2
– New effects format : effectId;duration;amplifier;show_icon
– Added config option for safe respawn.
– Added CraftTweaker integration.
These events can be imported :
- crafttweaker.api.event.timeisup.TickEvent : Fired each tick for each timer phase (dangerous, emergency and time is up).
- crafttweaker.api.event.timeisup.DangerousEvent : Fired each tick for 'dangerous' phase.
- crafttweaker.api.event.timeisup.EmergencyEvent : Fired each tick for 'emergency' phase.
- crafttweaker.api.event.timeisup.TimeIsUpEvent : Fired each tick for 'time is up' phase.
Changelog 1.3.3
– Doom effect spawnset is now configurable.
– Doom spawn chance is now configurable.
– Fix Doom effect : mobs were spawning on top of the world only.
– Cooldown before applying timer effects is now configurable.
– You can now get the current timer tick from events. ( .tick property for CraftTweaker)
– Fix events : the timer was stopped if event was canceled.
– Port 1.12.2



Recipes :
Timer bonus recipe

Timer anchor recipe

Timer anchor refill

Modpacks :
You are allowed to add this mod in any public modpack as long as it contains a link to this webpage or it is published on curseforge.
Get 0.05 TON 💎
Download




Add a comment