After installing custom HUD original one (hl2 hud) doesn't disappear
5 replies, posted
Just look at that
[IMG]http://i43.tinypic.com/29zdbao.jpg[/IMG]
...help?
remove the original hud textures
cl_drawhud 0
[QUOTE=code_gs;42367399]cl_drawhud 0[/QUOTE]
This command disable hud lol
custom hud too
Put this in a clientside file. Your hud file would be a good place.
[lua]
local HUDHide = {
["CHudHealth"] = true,
["CHudBattery"] = true,
["CHudAmmo"] = true,
["CHudSecondaryAmmo"] = true
}
hook.Add("HUDShouldDraw", "HideDefaultHUD", function(name)
if HUDHide[name] then return false end
end)
[/lua]
[QUOTE=ms333;42368237]Put this in a clientside file. Your hud file would be a good place.
[lua]
local HUDHide = {
["CHudHealth"] = true,
["CHudBattery"] = true,
["CHudAmmo"] = true,
["CHudSecondaryAmmo"] = true
}
hook.Add("HUDShouldDraw", "HideDefaultHUD", function(name)
if HUDHide[name] then return false end
end)
[/lua][/QUOTE]
Thanks!
Sorry, you need to Log In to post a reply to this thread.