Top is hardware (vid_renderer=1)
Bottom is software (vid_renderer=0)
[spoiler]

Breath meter script (in case it's needed)
[spoiler]
Code: Select all
int howlongisthebar;
script 447 (void) {
SetHudSize(512, 384, 1);
//hudmessage(s: " air: ", d: GetAirSupply(PlayerNumber()) ; HUDMSG_plain, 189, CR_LIGHTBLUE, 400.0, 140.0, 1.0);
if(GetAirSupply(PlayerNumber()) < 700) {
howlongisthebar = (GetAirSupply(PlayerNumber()) / 35);
for(int x = 0; x < howlongisthebar; x++){
//SetFont("WBARA0");
//hudmessage(s: " air: ", d: GetAirSupply(PlayerNumber()); HUDMSG_plain, 189, CR_LIGHTBLUE, 400.0, 140.0, 1.0);
//print(d: x);
SetFont("WBARA0");
HudMessage(s:"A"; HUDMSG_PLAIN, 190 + x, CR_LIGHTBLUE, 250.0 + (x * 7.0), 150.0, 1.0);
//delay(1);
}
delay(35);
}
delay(1);
restart;
}
I've attached the image used in the script, in case you need that too.