Вопрос Отключение Гмодовского С-Меню

Status
Not open for further replies.
  • 13
  • 0
No contact information.
Доброго времени суток, появился такой вопросик, можно ли как-нибудь убрать данное меню (скриншот ниже)?. То есть чтобы люди не могли поджигать, удалять предметы и т.д.
 

Attachments

  • Screenshot_3.png
    Screenshot_3.png
    426.9 KB · Views: 37
Solution


Lua:
hook.Remove("PreDrawHalos", "PropertiesHover")
hook.Remove("GUIMousePressed", "PropertiesClick")
hook.Remove("PreventScreenClicks", "PropertiesPreventClicks")

if CLIENT then return end

-- выключает все свойства
hook.Add("CanProperty", "brokencore.DisableProperty", function()
    return false
end)
  • 19
  • 3
  • 0
No contact information.


Lua:
hook.Remove("PreDrawHalos", "PropertiesHover")
hook.Remove("GUIMousePressed", "PropertiesClick")
hook.Remove("PreventScreenClicks", "PropertiesPreventClicks")

if CLIENT then return end

-- выключает все свойства
hook.Add("CanProperty", "brokencore.DisableProperty", function()
    return false
end)
 
Solution
  • 13
  • 0
No contact information.


Lua:
hook.Remove("PreDrawHalos", "PropertiesHover")
hook.Remove("GUIMousePressed", "PropertiesClick")
hook.Remove("PreventScreenClicks", "PropertiesPreventClicks")

if CLIENT then return end

-- выключает все свойства
hook.Add("CanProperty", "brokencore.DisableProperty", function()
    return false
end)
Спасибо большое
 
Status
Not open for further replies.
Top Bottom