Center print

Xml V2.0

Veteran XV
Or at least that's what i am guessing this shaded hud is. Is there any way to remove the shaded hud and just have the text? Killpop uses the same hud and it's rather annoying.
4MPOKwE.jpg
 
Not text. But the hud itself. I want to remove the hud and just keep the text.

I would post the script, but i don't know which one it would be. I went thru many in base/scripts and also play.gui trying to remove shaded hud but with no luck.


Edit: Killpop.acs also uses same shaded hud. I would like just the text to pop up and not the shaded hud.
 
im not sure but if u find the script it MIGHT have dis
Hud::New::Shaded( "HUDNAME", 0, 0, 0, 0, HUDNAME::Wake, HUDNAME::Sleep );

it that case delete ::Shaded

so it's like dis
Hud::New( "HUDNAME", 0, 0, 0, 0, HUDNAME::Wake, HUDNAME::Sleep );
 
that's a remoteBP (bottom print)

it's not really a HUD but it's defined twice in a stock 1.40 config, once in Events.cs and again in Misc.cs (i assume that whichever loads 2nd takes priority)

and it's setup differently in both (although the end result is the same)

(some of my configs have one of them removed)

you would either have to rewrite the function to work differently, or change the popups you want to call a different script like remoteEP

or in my case you write a complicated scriptGL HUD that hijacks the remoteCP function and reformats it on the fly

popups.jpg
 
Back
Top