In-Game Time
This mod provides a simple yet useful addition to Minecraft, displaying in-game time in the top left corner of the screen.

Mod settings
The following parameters can be configured:
- Show or hide the "In-Game Time: " text before the time
- Set the update frequency of the timer (default is every game tick)
- Press the 'o' key to stop time counting
Configuration file
# Show/hide text 'In-Game Time: '
show_text = true
# Every how many ticks should the timer update? (20 ticks = 1 second)
update_rate = 1
Features for version 1.12
In the earlier version for Minecraft 1.12, additional features were available:
- Show or hide the timer
- Display of tick counter
- Option to not automatically start the timer when loading the world, instead use commands '/igt start' to start and '/igt stop' to stop
- Display of real time (with customizable format, default hh:mm AM/PM)
Configuration file for version 1.12:
# Configuration file
config {
general {
# Show/Hide text 'In-Game Timer:'
B:"Show Text"=true
# Display ticks after time in parentheses
B:"Show Ticks"=false
# Show/Hide time in HH:MM:SS format
B:"Show Time"=true
# If enabled, the timer starts with 'igt:start' command instead of automatically when creating world
B:"Start Timer via Command"=true
# Every how many ticks (1 second = 20 ticks) should in-game timer update?
# Min: 1
# Max: 20
I:"Update rate"=1
}
"real time" {
# Format for displaying real time. Possible format options can be found here: https://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html
S:"Real Time Format"=hh:mm a
# Show real time in top left corner of screen. If enabled, in-game timer will no longer be displayed. In 'format' you can add day, month and year.
B:"Show Real Time"=false
}
}