Помогите с isCP

Снимок|690x312
как добавить гос профе в с-меню доступ к розыску и т.д

Как я вижу, у тебя в коде это уже есть. Попробуй это

[8] = {
    name = 'Объявить в розыск',
    icon = Material('cmenu_2/wanted.png'),
    color = Color(255, 73, 73),
    submenu = true,
    access = function()
        local ply = LocalPlayer()
        return ply:isCP() and ply:Team() ~= TEAM_MAYOR
    end,
    command = function(self)
        local Iply = LocalPlayer()

        for k, v in ipairs(player.GetAll()) do
            if v == Iply then continue end

            AddSelect(self, v:Name(), team.GetColor(v:Team()), function()
                Derma_StringRequest('Розыск',  "Укажите причину розыска",  "", function(a)
                        if IsValid(v) then
                            RunConsoleCommand("rp", "wanted", v:SteamID(), a)
                        end
                    end)
            end)
        end
    end
}

Может быть у тебя полицейские профы не добавлены сюда? (файл с настройкой профессий)

image

добавлены но все равно не работают
Снимок