h1-mod/data/ui_scripts/patches/disable_useless_things.lua

18 lines
415 B
Lua
Raw Normal View History

2022-07-03 12:19:57 -04:00
-- 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
2022-07-03 12:19:57 -04:00
LUI.removemenubutton("pc_controls", 4)
end
-- Remove social button
LUI.MenuBuilder.m_definitions["online_friends_widget"] = function()
return {
type = "UIElement"
}
end