h1-mod/data/ui_scripts/patches/disable_useless_things.lua
m 822ac93d4b
cod account region fix
Co-authored-by: VladWinner <yobabay23@gmail.com>
2022-07-04 20:40:24 -05:00

18 lines
415 B
Lua

-- Disable CP
Engine.SetDvarInt("ui_enable_cp", 0)
-- Disable CP store
Engine.SetDvarInt("ui_show_store", 0)
-- Remove CoD account button
if Engine.IsMultiplayer() and CoD.IsCoDAccountRegistrationAvailableInMyRegion() then
LUI.removemenubutton("pc_controls", 4)
end
-- Remove social button
LUI.MenuBuilder.m_definitions["online_friends_widget"] = function()
return {
type = "UIElement"
}
end