Вопрос Toolgun на двери

  • 4
  • 0
No contact information.
Как разрешить группе superadmin юзать toolgun на двери?
 
Solution
Lua:
hook.Add("CanTool", "broken.AllowedToDoor", function(pl, tr, toolname)
    local ent = tr.Entity
    if
        IsValid(ent) and
        ent:isDoor() and
        pl:IsSuperAdmin()
    then
        return true
    end
end)
  • 19
  • 3
  • 0
No contact information.
Lua:
hook.Add("CanTool", "broken.AllowedToDoor", function(pl, tr, toolname)
    local ent = tr.Entity
    if
        IsValid(ent) and
        ent:isDoor() and
        pl:IsSuperAdmin()
    then
        return true
    end
end)
 
Solution
Top Bottom