{"id":151391,"date":"2024-08-29T14:48:28","date_gmt":"2024-08-29T12:48:28","guid":{"rendered":"https:\/\/hifivem.com\/?post_type=product&#038;p=151391"},"modified":"2025-12-24T07:29:55","modified_gmt":"2025-12-24T06:29:55","slug":"codem-mbossmenu","status":"publish","type":"product","link":"https:\/\/fivemx.com\/pt\/codem-mbossmenu\/","title":{"rendered":"C\u00f3digoM mBossMenu"},"content":{"rendered":"<h3>Video<\/h3>\n<p><iframe title=\"CodeM mBossmenu | discord.gg\/zj3QsUfxWs\" width=\"1290\" height=\"726\" src=\"https:\/\/www.youtube.com\/embed\/W2EyQUMf8zQ?feature=oembed\" loading=\"lazy\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe><\/p>\n<hr \/>\n<h3>Config file<\/h3>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">Config = {}\r\nConfig.Framework = 'esx' -- autodetect, qb, oldqb, esx, oldesx\r\nConfig.SQL = \"oxmysql\"          -- oxmysql, ghmattimysql, mysql-async\r\nConfig.ItemImagesFolder = \"nui:\/\/ox_inventory\/web\/images\/\"\r\nConfig.MenuKey = 38\r\nConfig.InteractionHandler = 'ox_target' -- drawtext, ox_target, qb_target, qb_textui, esx_textui\r\nConfig.AdminMenuCommand = \"adminboss\" \r\nConfig.DefaultImage = 'https:\/\/cdn.discordapp.com\/attachments\/983471660684423240\/1147567519712940044\/example-pp.png'\r\nConfig.Admins = {\r\n    \"admin\",\r\n    \"superadmin\",\r\n    \"god\",\r\n    \"mod\",\r\n    \"moderator\",\r\n}\r\n\r\n\r\nConfig.Certifications = {\r\n    {\r\n        name = \"air_support\",\r\n        label = \"Air Support Division\",\r\n        icon = 'air_support_icon.svg',\r\n    },\r\n    {\r\n        name = \"burglary_task\",\r\n        label = \"Burglary Task Force\",\r\n        icon = 'burglary_task_icon.svg',\r\n    },\r\n    {\r\n        name = \"field_training_officer\",\r\n        label = \"Field Officer\",\r\n        icon = 'field_training_icon.svg',\r\n    },\r\n    {\r\n        name = \"high_speed_pursuit_unit\",\r\n        label = \"High Speed Pursuit Unit\",\r\n        icon = 'high_speed_pursuit_unit_icon.svg',\r\n    },\r\n    {\r\n        name = \"high_value_target_unit\",\r\n        label = \"High Value Target Unit\",\r\n        icon = 'high_value_target_unit_icon.svg',\r\n    },\r\n    {\r\n        name = \"k9_unit\",\r\n        label = \"K9 Unit\",\r\n        icon = 'k9_unit_icon.svg',\r\n    },\r\n    {\r\n        name = \"major_crimes_unit\",\r\n        label = \"Major Crimes Unit\",\r\n        icon = 'major_crimes_unit_icon.svg',\r\n    },\r\n    {\r\n        name = \"motorcycle\",\r\n        label = \"Motorcycle\",\r\n        icon = 'motorcycle_icon.svg',\r\n    },\r\n    {\r\n        name = \"shark_rangers_unit\",\r\n        label = \"Shark Rangers Unit\",\r\n        icon = 'shark_rangers_icon.svg',\r\n    },\r\n}\r\n\r\nConfig.Inventory = \"ox_inventory\" -- codem-inventory, qb_inventory, esx_inventory, ox_inventory, qs_inventory\r\n\r\nConfig.BlacklistedItems = {          -- items you don't want to show up on the menu\r\n    -- \"water\",\r\n    -- \"weapon_pistol\"\r\n}\r\n\r\nConfig.Notify = function(message)\r\n    if Config.Framework == 'esx' or Config.Framework == 'oldesx' then\r\n        TriggerEvent(\"esx:showNotification\", message)\r\n    else\r\n        TriggerEvent('QBCore:Notify', message, \"info\", 1500)\r\n    end\r\nend\r\nConfig.Clothes = \"fivem-appearance\" -- fivem-appearance -- illenium-appearance -- codem-appearance -- esx_skin -- qb-clothing\r\n\r\nfunction openClothingMenu()\r\n    if Config.Clothes == 'fivem-appearance' then\r\n        TriggerEvent(\"fivem-appearance:client:openClothingShopMenu\", false)\r\n    end\r\n    if Config.Clothes == 'illenium-appearance' then\r\n        TriggerEvent(\"illenium-appearance:client:openClothingShop\", false)        \r\n    end\r\n    if Config.Clothes == 'codem-appearance' then\r\n        TriggerEvent(\"codem-appereance:OpenClothing\")\r\n         --[[\r\n            \/\/ Add this code in codem-appereance client\/clothing.lua\r\n\r\n           RegisterNetEvent(\"codem-appereance:OpenClothing\")\r\n            AddEventHandler(\"codem-appereance:OpenClothing\", function()\r\n                OpenMenu(\"binco\")\r\n            end)\r\n        --]]\r\n    end\r\n    if Config.Clothes == 'esx_skin' then\r\n        TriggerEvent(\"esx_skin:openMenu\")\r\n    end\r\n    if Config.Clothes == 'qb-clothes' then\r\n        TriggerEvent(\"qb-clothing:client:openMenu\")\r\n    end\r\nend\r\n\r\nfunction RefreshSkin()\r\n    if Config.Clothes == 'fivem-appearance' then\r\n        TriggerEvent(\"fivem-appearance:client:reloadSkin\")\r\n    end\r\n    if Config.Clothes == 'illenium-appearance' then\r\n        TriggerEvent(\"illenium-appearance:client:reloadSkin\")        \r\n    end\r\n    if Config.Clothes == 'codem-appearance' then\r\n        TriggerEvent(\"codem-appearance:reloadSkin\")\r\n    end\r\n    if Config.Clothes == 'esx_skin' then\r\n        TriggerEvent(\"esx_skin:getLastSkin\", function(lastSkin)\r\n            TriggerEvent('skinchanger:loadSkin', lastSkin)\r\n        end)\r\n    end\r\n    if Config.Clothes == 'qb-clothes' then\r\n        TriggerEvent(\"qb-clothing:reloadSkin\")\r\n        --[[\r\n            \/\/ Add this code in qb-clothing client\/main.lua\r\n\r\n            RegisterNetEvent(\"qb-clothing:reloadSkin\")\r\n            AddEventHandler(\"qb-clothing:reloadSkin\", function()      \r\n                local playerPed = PlayerPedId()\r\n                local health = GetEntityHealth(playerPed)\r\n                reloadSkin(health)\r\n            end)\r\n        --]]\r\n    end\r\nend\r\n\r\nfunction onBossMenuOpen()\r\nend\r\n\r\nfunction onBossMenuClose()\r\nend\r\n\r\nfunction badgenumber(source)\r\n    -- your function to get player badge number\r\n    return 0\r\nend<\/pre>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>O <strong>Menu mBoss<\/strong> \u00e9 um sistema de menu de chefe sofisticado e rico em recursos, projetado para uso com as estruturas ESX e QBCore no FiveM. Esta ferramenta premium oferece aos propriet\u00e1rios de neg\u00f3cios e administradores de servidores controle abrangente sobre opera\u00e7\u00f5es comerciais, gerenciamento de funcion\u00e1rios e tarefas administrativas, tudo por meio de uma interface elegante e amig\u00e1vel.<\/p>\n<h3>Principais caracter\u00edsticas:<\/h3>\n<ol>\n<li><strong>Gest\u00e3o de funcion\u00e1rios<\/strong>: Visualize e gerencie facilmente os funcion\u00e1rios com perfis detalhados exibindo status online\/offline, classifica\u00e7\u00e3o e datas de in\u00edcio. Os propriet\u00e1rios de empresas podem recrutar novos membros diretamente do menu.<\/li>\n<li><strong>Detalhes da classifica\u00e7\u00e3o<\/strong>: Defina e gerencie classifica\u00e7\u00f5es de funcion\u00e1rios, incluindo defini\u00e7\u00e3o de sal\u00e1rios, permiss\u00f5es e a\u00e7\u00f5es espec\u00edficas de classifica\u00e7\u00e3o. Esta se\u00e7\u00e3o fornece uma maneira organizada de acompanhar as fun\u00e7\u00f5es e responsabilidades dos funcion\u00e1rios.<\/li>\n<li><strong>Invent\u00e1rio de neg\u00f3cios<\/strong>: Permite que tanto chefes quanto funcion\u00e1rios acessem, adicionem ou removam itens do invent\u00e1rio comercial compartilhado, simplificando o gerenciamento de invent\u00e1rio.<\/li>\n<li><strong>Menu de administra\u00e7\u00e3o para empresas<\/strong>: Os administradores de servidor podem criar novos trabalhos e gerenciar configura\u00e7\u00f5es de neg\u00f3cios por meio de um painel de administra\u00e7\u00e3o dedicado. Isso inclui adicionar novos neg\u00f3cios, configurar fun\u00e7\u00f5es de trabalho e supervisionar as opera\u00e7\u00f5es gerais de neg\u00f3cios.<\/li>\n<li><strong>Visualiza\u00e7\u00e3o de neg\u00f3cios personaliz\u00e1vel<\/strong>: Os administradores podem personalizar a apar\u00eancia do mBossmenu, incluindo temas de cores e logotipos da empresa. A interface tamb\u00e9m fornece insights financeiros, incluindo receitas e despesas, facilitando o acompanhamento do desempenho do neg\u00f3cio.<\/li>\n<li><strong>Seguro e Eficiente<\/strong>: Projetado para desempenho ideal, o mBossmenu garante uma experi\u00eancia suave e responsiva, mesmo com um grande n\u00famero de funcion\u00e1rios e empresas.<\/li>\n<\/ol>\n<p>Com o mBossmenu, o gerenciamento de neg\u00f3cios dentro do seu servidor FiveM n\u00e3o \u00e9 apenas simplificado, mas tamb\u00e9m elevado a um novo n\u00edvel de profissionalismo e efici\u00eancia. Perfeito para servidores de RPG que visam fornecer uma experi\u00eancia de gerenciamento de neg\u00f3cios realista e envolvente. Dispon\u00edvel exclusivamente para usu\u00e1rios premium.<\/p>","protected":false},"featured_media":151392,"comment_status":"open","ping_status":"closed","template":"","meta":[],"product_brand":[2898],"product_cat":[512,96,1892,2907],"product_tag":[2684],"class_list":["post-151391","product","type-product","status-publish","has-post-thumbnail","product_brand-codem","product_cat-qbcore-scripts","product_cat-esx-scripts","product_cat-fivem-job-scripts","product_cat-qbox-scripts","product_tag-codem","first","instock","sale","downloadable","virtual","taxable","purchasable","product-type-simple"],"_links":{"self":[{"href":"https:\/\/fivemx.com\/pt\/wp-json\/wp\/v2\/product\/151391","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fivemx.com\/pt\/wp-json\/wp\/v2\/product"}],"about":[{"href":"https:\/\/fivemx.com\/pt\/wp-json\/wp\/v2\/types\/product"}],"replies":[{"embeddable":true,"href":"https:\/\/fivemx.com\/pt\/wp-json\/wp\/v2\/comments?post=151391"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/fivemx.com\/pt\/wp-json\/wp\/v2\/media\/151392"}],"wp:attachment":[{"href":"https:\/\/fivemx.com\/pt\/wp-json\/wp\/v2\/media?parent=151391"}],"wp:term":[{"taxonomy":"product_brand","embeddable":true,"href":"https:\/\/fivemx.com\/pt\/wp-json\/wp\/v2\/product_brand?post=151391"},{"taxonomy":"product_cat","embeddable":true,"href":"https:\/\/fivemx.com\/pt\/wp-json\/wp\/v2\/product_cat?post=151391"},{"taxonomy":"product_tag","embeddable":true,"href":"https:\/\/fivemx.com\/pt\/wp-json\/wp\/v2\/product_tag?post=151391"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}