Have you ever liked to have some cool info like the current ingame day always on screen?
The mod allows you to always have the informations you like on screen and it's fully customizable by yourself.
Manage what you see by modifying the preset made in JSON, and if you are not familiar with it you could always import and use the preset of another player!
Once installed the mod comes with a default preset.
Right now it's listed as beta because I would like to have it stable and with more features before releasing
You can have many HUDs active as you like and you can find them placed inside /config/ingameinfojson/huds
Each HUD is a JSON file structured roughly in this way:
{
"position": "top-left",
"rows": [{
"elements": [{
"type": "currentday",
"showLabel": true
},
{
"type": "time"
},
{
"type": "dayperiod"
}
]
},
{
"elements": [{
"type": "biome",
"showLabel": true
}]
},
{
"elements": [{
"type": "fps",
"showLabel": true
}]
},
{
"elements": [{
"type": "coords"
}]
}
]
}
Each HUDs is composed by rows that also contains elements inside. The element have type key which will allow you to select which info you want to show between these values:
There also exists the keys 'showLabel' and 'label', the first one is a boolean and if enabled shows a label for the value, the second can be used to display any text you want for that value as label otherwise will be used a default label.
!! BEWARE THE STRUCTURE MAY CHANGE BASED ON MOD VERSION, I WILL SOON PROVIDE A LINK THAT WILL TRACK THE RIGHT STRUCTURE BASED ON THE DIFFERENT VERSIONS !!
Simply download the mod and put its file inside /mods folder.
The mod is fully client and not required to be on the server side.
There should be no conflict problems but if you ran into some errors report down in the comments.