how to change hud in bo2.
-
so basically i want to change the scorefeed (the point display i get when i get a kill,etc- "+100")
i want to change stuff like the font size, color,remove the glow,etc
is there a way i could do it using the ui_mp folder in ,my plutonium t6 folder
these are the files i see
"C:\Users*\AppData\Local\Plutonium\storage\t6\raw\ui_mp\t6\hud\class.lua"
"C:\Users*\AppData\Local\Plutonium\storage\t6\raw\ui_mp\t6\hud\loading.lua"
"C:\Users*\AppData\Local\Plutonium\storage\t6\raw\ui_mp\t6\hud\scoreboard.lua"
"C:\Users*\AppData\Local\Plutonium\storage\t6\raw\ui_mp\t6\hud\spectateplayercard.lua"
"C:\Users****\AppData\Local\Plutonium\storage\t6\raw\ui_mp\t6\hud\team_marinesopfor.lua" -
I’m not 100% sure about this, but here’s what I found while looking into it:
It doesn’t seem possible to directly change the BO2 scorefeed (“+100” popup) with just the ui_mp folder in Plutonium T6. From what I read, that part of the HUD is handled by Treyarch’s compiled LUI files (scorepopup stuff inside the fastfiles), and Plutonium doesn’t currently allow you to override those in Multiplayer.
What people usually mention instead are workarounds:
You can hide most or all of the HUD with a server-side GSC command like self setclienthudhardcore(1), but that removes the whole HUD, not just the scorefeed.
Some dvars let you hide other elements (killfeed, center messages, etc.), but they don’t touch the scorefeed itself.
In Zombies, some mods have HUD color toggles, but that doesn’t apply to MP.
It is technically possible to decompile LUI and see how HUD is structured, but you can’t load custom replacements in T6 MP at the moment.
So, as far as I can tell, you can’t reskin or customize the scorefeed in Plutonium MP right now, unless you go with the “hide HUD entirely and rebuild with custom HudElems” approach.
-
ohh okay, thanks