{"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\/fr\/codem-mbossmenu\/","title":{"rendered":"Menu du mBoss de CodeM"},"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>Le <strong>Menu mBoss<\/strong> est un syst\u00e8me de menu sophistiqu\u00e9 et riche en fonctionnalit\u00e9s con\u00e7u pour \u00eatre utilis\u00e9 avec les frameworks ESX et QBCore dans FiveM. Cet outil premium offre aux propri\u00e9taires d&#039;entreprise et aux administrateurs de serveur un contr\u00f4le complet sur les op\u00e9rations commerciales, la gestion des employ\u00e9s et les t\u00e2ches administratives, le tout via une interface \u00e9l\u00e9gante et conviviale.<\/p>\n<h3>Caract\u00e9ristiques principales :<\/h3>\n<ol>\n<li><strong>Gestion des employ\u00e9s<\/strong>: Visualisez et g\u00e9rez facilement vos employ\u00e9s gr\u00e2ce \u00e0 des profils d\u00e9taill\u00e9s affichant leur statut en ligne\/hors ligne, leur rang et leurs dates de d\u00e9but. Les propri\u00e9taires d&#039;entreprise peuvent recruter de nouveaux membres directement depuis le menu.<\/li>\n<li><strong>D\u00e9tails du rang<\/strong>: D\u00e9finissez et g\u00e9rez les rangs des employ\u00e9s, notamment en d\u00e9finissant les salaires, les autorisations et les actions sp\u00e9cifiques \u00e0 chaque rang. Cette section fournit un moyen organis\u00e9 de suivre les r\u00f4les et les responsabilit\u00e9s des employ\u00e9s.<\/li>\n<li><strong>Inventaire d&#039;entreprise<\/strong>:Permet aux patrons et aux employ\u00e9s d&#039;acc\u00e9der, d&#039;ajouter ou de supprimer des articles de l&#039;inventaire commercial partag\u00e9, simplifiant ainsi la gestion des stocks.<\/li>\n<li><strong>Menu d&#039;administration pour les entreprises<\/strong>:Les administrateurs de serveur peuvent cr\u00e9er de nouveaux emplois et g\u00e9rer les param\u00e8tres de l&#039;entreprise via un panneau d&#039;administration d\u00e9di\u00e9. Cela comprend l&#039;ajout de nouvelles entreprises, la configuration des r\u00f4les professionnels et la supervision des op\u00e9rations commerciales globales.<\/li>\n<li><strong>Vue d&#039;entreprise personnalisable<\/strong>:Les administrateurs peuvent personnaliser l&#039;apparence du menu mBoss, notamment les th\u00e8mes de couleurs et les logos d&#039;entreprise. L&#039;interface fournit \u00e9galement des informations financi\u00e8res, notamment sur les revenus et les d\u00e9penses, ce qui facilite le suivi des performances de l&#039;entreprise.<\/li>\n<li><strong>S\u00e9curis\u00e9 et efficace<\/strong>:Con\u00e7u pour des performances optimales, mBossmenu garantit une exp\u00e9rience fluide et r\u00e9active m\u00eame avec un grand nombre d&#039;employ\u00e9s et d&#039;entreprises.<\/li>\n<\/ol>\n<p>Avec mBossmenu, la gestion d&#039;entreprise au sein de votre serveur FiveM est non seulement simplifi\u00e9e, mais \u00e9galement \u00e9lev\u00e9e \u00e0 un nouveau niveau de professionnalisme et d&#039;efficacit\u00e9. Parfait pour les serveurs de jeu de r\u00f4le qui visent \u00e0 offrir une exp\u00e9rience de gestion d&#039;entreprise r\u00e9aliste et engageante. Disponible exclusivement pour les utilisateurs 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\/fr\/wp-json\/wp\/v2\/product\/151391","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fivemx.com\/fr\/wp-json\/wp\/v2\/product"}],"about":[{"href":"https:\/\/fivemx.com\/fr\/wp-json\/wp\/v2\/types\/product"}],"replies":[{"embeddable":true,"href":"https:\/\/fivemx.com\/fr\/wp-json\/wp\/v2\/comments?post=151391"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/fivemx.com\/fr\/wp-json\/wp\/v2\/media\/151392"}],"wp:attachment":[{"href":"https:\/\/fivemx.com\/fr\/wp-json\/wp\/v2\/media?parent=151391"}],"wp:term":[{"taxonomy":"product_brand","embeddable":true,"href":"https:\/\/fivemx.com\/fr\/wp-json\/wp\/v2\/product_brand?post=151391"},{"taxonomy":"product_cat","embeddable":true,"href":"https:\/\/fivemx.com\/fr\/wp-json\/wp\/v2\/product_cat?post=151391"},{"taxonomy":"product_tag","embeddable":true,"href":"https:\/\/fivemx.com\/fr\/wp-json\/wp\/v2\/product_tag?post=151391"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}