HUD showing match time in format like 00:55

Hello! I made HUD which can easily show match time in same format as in skirmish gamemode. Screenshot: i.imgur[dot]com/GzGdYMP.png
No variables used.
Please, be aware; clicking on action may cause game to freeze. It is recommended to change the values using Notepad.

Variant 1, with text in Headeractions { "[LAG WARNING]: DO NOT CLICK! VARIANT 1: In Header" Create HUD Text(Event Player, Custom String("{0}:{1}", Round To Integer(Match Time / 60, Down) > 9 ? Round To Integer( Match Time / 60, Down) : (Round To Integer(Match Time / 60, Down) > 0 ? Custom String("0{0}", Round To Integer(Match Time / 60, Down)) : Custom String("00")), Round To Integer(Match Time, Down) - Round To Integer(Match Time / 60, Down) * 60 > 9 ? Round To Integer(Match Time, Down) - Round To Integer(Match Time / 60, Down) * 60 : (Round To Integer(Match Time, Down) - Round To Integer(Match Time / 60, Down) * 60 > 0 ? Custom String("0{0}", Round To Integer(Match Time, Down) - Round To Integer(Match Time / 60, Down) * 60) : Custom String("00"))), Null, Null, Top, 0, White, White, White, Visible To and String, Default Visibility); }
Variant 2, with text in Subheaderactions { "[LAG WARNING]: DO NOT CLICK! VARIANT 2: In Subheader" Create HUD Text(Event Player, Null, Custom String("{0}:{1}", Round To Integer(Match Time / 60, Down) > 9 ? Round To Integer( Match Time / 60, Down) : (Round To Integer(Match Time / 60, Down) > 0 ? Custom String("0{0}", Round To Integer(Match Time / 60, Down)) : Custom String("00")), Round To Integer(Match Time, Down) - Round To Integer(Match Time / 60, Down) * 60 > 9 ? Round To Integer(Match Time, Down) - Round To Integer(Match Time / 60, Down) * 60 : (Round To Integer(Match Time, Down) - Round To Integer(Match Time / 60, Down) * 60 > 0 ? Custom String("0{0}", Round To Integer(Match Time, Down) - Round To Integer(Match Time / 60, Down) * 60) : Custom String("00"))), Null, Top, 0, White, White, White, Visible To and String, Default Visibility); }
Variant 3, in Textactions { "[LAG WARNING]: DO NOT CLICK! VARIANT 3: In Text" Create HUD Text(Event Player, Null, Null, Custom String("{0}:{1}", Round To Integer(Match Time / 60, Down) > 9 ? Round To Integer( Match Time / 60, Down) : (Round To Integer(Match Time / 60, Down) > 0 ? Custom String("0{0}", Round To Integer(Match Time / 60, Down)) : Custom String("00")), Round To Integer(Match Time, Down) - Round To Integer(Match Time / 60, Down) * 60 > 9 ? Round To Integer(Match Time, Down) - Round To Integer(Match Time / 60, Down) * 60 : (Round To Integer(Match Time, Down) - Round To Integer(Match Time / 60, Down) * 60 > 0 ? Custom String("0{0}", Round To Integer(Match Time, Down) - Round To Integer(Match Time / 60, Down) * 60) : Custom String("00"))), Top, 0, White, White, White, Visible To and String, Default Visibility); }

Moderators please, I’m bad at formatting :smiley: