https://www.dropbox.com/s/nsfznec2b3mvt ... d.pk3?dl=0
Update:
Added a poll.
Added a different color to the third bar. only one thing left to do but thats going to be hard.

Need to add the message box thing but how to do that?
Code: Select all
base Doom;
height 32;
statusbar normal, forcescaled
{
// basic layout
DrawImage "INFOBAR", 0, 168;
// health and armor bars
DrawBar "I_HBAR", "I_EBAR", Health, horizontal, interpolate(8), 141, 171;
DrawBar "I_ABAR", "I_EBAR", Armor, horizontal, interpolate(8), 141, 181;
DrawBar "I_KBAR", "I_EBAR", kills, horizontal, interpolate(8), 141, 191;
// ammo bar
DrawNumber 3, ALPHAFONT_LARGE, untranslated, Ammo1, 92, 185;
drawnumber 3, ALPHAFONT_SMALL, untranslated, ammo Clip, 128, 172;
drawnumber 3, ALPHAFONT_SMALL, untranslated, ammo Shell, 128, 178;
drawnumber 3, ALPHAFONT_SMALL, untranslated, ammo RocketAmmo, 128, 184;
drawnumber 3, ALPHAFONT_SMALL, untranslated, ammo Cell, 128, 190;
DrawImage weaponicon, 3, 171;
// level stats
drawstring ALPHAFONT_SMALL, untranslated, time, 213, 178;
drawnumber 3, ALPHAFONT_SMALL, untranslated, items, 233, 191;
drawnumber 2, ALPHAFONT_SMALL, untranslated, secrets, 269, 191;
// keys
drawswitchableimage keyslot 2 && 5, "nullimage", "I_IPIC01", "I_IPIC01", "I_IPIC01", 204, 172;
drawswitchableimage keyslot 3 && 6, "nullimage", "I_IPIC02", "I_IPIC02", "I_IPIC02", 204, 180;
drawswitchableimage keyslot 1 && 4, "nullimage", "I_IPIC03", "I_IPIC03", "I_IPIC03", 204, 188;
}
Alphas 2 and 3 show a blue bar for the Shield.Gordon228 wrote:how would you know?