-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Welcome to the InfoHUD wiki!
InfoHUD is a highly customizable information overlay for Minecraft. Information can be displayed in 8 different regions of the screen, with each region having offset options to allow for other mods to display information as well.
Each region can display multiple lines of data, specified using tags and literal text. Tags are denoted by using ${} to wrap the name of the tag, with some tags also taking parameters that are specified using : as a separator. These parameters can also contain embedded tags.
Example:
Day: ${yellow}${day} ${eq:${daytime}:true:${yellow}:${darkgray}}${mctime}
This will display with the text "Day: " in white text (default formatting) followed by setting the color to yellow (tag yellow) and then displaying the day count (tag day), then it uses the function tag eq (for equals) which takes 4 parameters: value 1, value 2, true result, false result. The daytime tag returns true if it is currently considered daytime (thunderstorms count as night in Minecraft) which is then compared to the value of true. If it is daytime, it outputs the value of the yellow tag, and if not, it outputs the value of the darkgray tag, then it displays the in-game time (tag mctime)
Any line that results in an empty string will be excluded from display and will not display a blank line.