local meta = FindMetaTable( "Player" ) local origFn = meta.Give function meta:Give( what ) local loadout = ur.getLoadout(self) local function excluded() if ur.config.admin_exclude.loadouts == "true" and self:IsAdmin() then return true end if loadout == "excluded" then return true end if ur.config.loadouts == "false" then return true end return false end if ur.loadouts[loadout] then if not excluded() then if not(table.HasValue(ur.loadouts[loadout]["loadout"], what)) then return false else origFn( self, what ) end end end origFn( self, what ) end