Arch
Legions Developer

This is my newest HUD named Sync.
Currently, it is just the bottom frame and a FlagHud display. I still have quite a bit of work to do on it. So if you don't mind having to go in and manually move things (clock, speed display, ammo displays) to where you want, go for it. Otherwise, you can wait until I am finished with the project to try it out.
You can download it here: Download
By default, the FlagHud frame/display is anchored at the top. If you want to move it open up Sync_2.cs and scroll down until you find this.
Code:
//////////////
//
// NEW STUFF!!!!
//
//////////////
function NewFlagHud()
{
new GuiControlProfile(FlagHudTextProf)
{
fontType = $Pref::Gui::DefaultBoldFont;
fontSize = $Pref::Gui::SmallFontSize;
border = 0;
fontColor = $Pref::Gui::TextColor;
tab = false;
canKeyFocus = false;
};
new GuiBitmapCtrl(FlagHud)
{
bitmap = "mods/autoexec/Sync/bg_2.png";
isContainer = "1";
modal = "false";
profile = "TranslucentBackgroundProfile3";
horizSizing = "center";
vertSizing = "bottom";
position = "0 15";
extent = "600 25";
Under GuiBitmapCtrl(FlagHud) change the Y value of position = "0 15"; to something higher. For example, my resolution is 1366x768, so I use 680 as the Y value.
A Few Screenshots



Suggestions Are Welcomed.