// #autoload // #Zeoshit = i like to clone ilys scripts, added font options to his/this script package dtHealthHud { function PlayGui::onWake(%this) { if (!isObject(dttxt_Health)) { new GuiControlProfile("HealthHudTextCtrl") { fontType = "Arial Bold"; fontSize = 20; fontColor = "216 0 0"; }; // #Font size, color and type can be edited here ^^ new GuiTextCtrl(dttxt_Health) { profile = "HealthHudTextCtrl"; horizSizing = "relative"; vertSizing = "relative"; position = "160 160"; extent = "150 30"; minExtent = "3 50"; visible = "1"; opacity = "0.5"; setFirstResponder = "0"; modal = "1"; helpTag = "0"; verticalFill = "1"; text=""; }; PlayGui.add(dttxt_Health); dttxt_Health.getvalue(); hudmover::addhud(dttxt_Health, "DT_Health"); } parent::onWake(%this); } }; activatePackage(dtHealthHud);