{"id":50313,"date":"2022-11-08T19:43:27","date_gmt":"2022-11-08T18:43:27","guid":{"rendered":"https:\/\/fivem-mods.net\/?post_type=product&#038;p=50313"},"modified":"2026-06-22T20:39:37","modified_gmt":"2026-06-22T18:39:37","slug":"bb-multicar-qb","status":"publish","type":"product","link":"https:\/\/fivemx.com\/fr\/bb-multichar-qb\/","title":{"rendered":"BB Multichar (QB)"},"content":{"rendered":"\r\n<h2 class=\"wp-block-heading\">BB-MULTICHARACTER<\/h2>\r\n\r\n\r\n\r\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\">\r\n<div class=\"wp-block-embed__wrapper\">https:\/\/www.youtube.com\/watch?v=rDTCuyhPz9M<\/div>\r\n<\/figure>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">Installation<\/h2>\r\n\r\n\r\n\r\n<ol class=\"wp-block-list\">\r\n<li>Drag &amp; drop to your server, stop qb-multicharacter or whatever multicharacter you&#8217;re using.<\/li>\r\n\r\n\r\n\r\n<li>Edit the server config as you like to fit your server.<\/li>\r\n\r\n\r\n\r\n<li>Enjoy.<\/li>\r\n<\/ol>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">Config<\/h2>\r\n\r\n\r\n\r\n<pre class=\"wp-block-code\"><code>CoreConfig = {\r\n    core = 'qb-core', -- your core name for the exports\r\n    prefix = 'qb-', -- your trigger prefixes\r\n    notify = 'QBCore:Notify', -- your notification trigger\r\n    char_english_only = true, -- block to option to create character with non english names\r\n\r\n    clothing_base = 'qb', -- Whether \"qb\", \"raid\", \"fivem-appearance\" or \"other\"\r\n    clothing_name = 'qb-clothing' -- Your clothing resource name\r\n}<\/code><\/pre>\r\n\r\n\r\n\r\n<h2 class=\"wp-block-heading\">Clothing<\/h2>\r\n\r\n\r\n\r\n<p class=\"wp-block-paragraph\">Default <a class=\"wpil_keyword_link\" href=\"https:\/\/fivemx.com\/support\/\" title=\"support\" data-wpil-keyword-link=\"linked\" data-wpil-monitor-id=\"1297\">support<\/a> for 2 clothing stores: <strong>qb-clothing &amp; raid-clothing.<\/strong><\/p>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\">\r\n<li>If youre using qb-clothing make sure to set it to &#8220;qb&#8221; even if your <a class=\"wpil_keyword_link\" href=\"https:\/\/fivemx.com\/brand\/core\/\" title=\"Core\" data-wpil-keyword-link=\"linked\" data-wpil-monitor-id=\"1888\">core<\/a> name is different.<\/li>\r\n\r\n\r\n\r\n<li>If youre using raid-clothing, make sure to add the following function to your client.<br \/>[1] Paste the following code to the bottom of your &#8220;raid-clothing\/client\/client.lua&#8221;: <code>function SetPedMetadata(ped, data) for i = 1, #drawable_names do if data.drawables[0] == nil then if drawable_names[i] == \"undershirts\" and data.drawables[tostring(i-1)][2] == -1 then SetPedComponentVariation(ped, i-1, 15, 0, 2) else SetPedComponentVariation(ped, i-1, data.drawables[tostring(i-1)][2], data.drawtextures[i][2], 2) end else if drawable_names[i] == \"undershirts\" and data.drawables[i-1][2] == -1 then SetPedComponentVariation(ped, i-1, 15, 0, 2) else SetPedComponentVariation(ped, i-1, data.drawables[i-1][2], data.drawtextures[i][2], 2) end end end for i = 1, #prop_names do local propZ = (data.drawables[0] == nil and data.props[tostring(i-1)][2] or data.props[i-1][2]) ClearPedProp(ped, i-1) SetPedPropIndex(ped, i-1, propZ, data.proptextures[i][2], true) end Wait(100) if data.headBlend then SetPedHairColor(ped, tonumber(data.hairColor[1]), tonumber(data.hairColor[2])) SetPedHeadBlend(data.headBlend) SetPedHeadBlendData(ped, tonumber(data.headBlend['shapeFirst']), tonumber(data.headBlend['shapeSecond']), tonumber(data.headBlend['shapeThird']), tonumber(data.headBlend['skinFirst']), tonumber(data.headBlend['skinSecond']), tonumber(data.headBlend['skinThird']), tonumber(data.headBlend['shapeMix']), tonumber(data.headBlend['skinMix']), tonumber(data.headBlend['thirdMix']), false) for i = 1, #face_features do SetPedFaceFeature(ped, i-1, data.headStructure[i]) end if json.encode(data) ~= \"[]\" then for i = 1, #head_overlays do SetPedHeadOverlay(ped, i-1, tonumber(data.headOverlay[i].overlayValue), tonumber(data.headOverlay[i].overlayOpacity)) end SetPedHeadOverlayColor(ped, 0, 0, tonumber(data.headOverlay[1].firstColour), tonumber(data.headOverlay[1].secondColour)) SetPedHeadOverlayColor(ped, 1, 1, tonumber(data.headOverlay[2].firstColour), tonumber(data.headOverlay[2].secondColour)) SetPedHeadOverlayColor(ped, 2, 1, tonumber(data.headOverlay[3].firstColour), tonumber(data.headOverlay[3].secondColour)) SetPedHeadOverlayColor(ped, 3, 0, tonumber(data.headOverlay[4].firstColour), tonumber(data.headOverlay[4].secondColour)) SetPedHeadOverlayColor(ped, 4, 2, tonumber(data.headOverlay[5].firstColour), tonumber(data.headOverlay[5].secondColour)) SetPedHeadOverlayColor(ped, 5, 2, tonumber(data.headOverlay[6].firstColour), tonumber(data.headOverlay[6].secondColour)) SetPedHeadOverlayColor(ped, 6, 0, tonumber(data.headOverlay[7].firstColour), tonumber(data.headOverlay[7].secondColour)) SetPedHeadOverlayColor(ped, 7, 0, tonumber(data.headOverlay[8].firstColour), tonumber(data.headOverlay[8].secondColour)) SetPedHeadOverlayColor(ped, 8, 2, tonumber(data.headOverlay[9].firstColour), tonumber(data.headOverlay[9].secondColour)) SetPedHeadOverlayColor(ped, 9, 0, tonumber(data.headOverlay[10].firstColour), tonumber(data.headOverlay[10].secondColour)) SetPedHeadOverlayColor(ped, 10, 1, tonumber(data.headOverlay[11].firstColour), tonumber(data.headOverlay[11].secondColour)) SetPedHeadOverlayColor(ped, 11, 0, tonumber(data.headOverlay[12].firstColour), tonumber(data.headOverlay[12].secondColour)) end endend<\/code> [2] Paste the following code to the bottom of youre fxmanifest\/__resource.lua in the raid clothing resource:<br \/>export &#8216;SetPedMetadata&#8217;<\/li>\r\n\r\n\r\n\r\n<li>If youre using any other clothing <a href=\"https:\/\/fivemx.com\/shop\/\" data-wpil-monitor-id=\"1136\">store<\/a>, set it to &#8220;@other&#8221; and make sure to edit all the functions related to the clothing,<br \/>server\/functions.lua -&gt; edit the getOtherClothing function.<br \/>client\/main.lua -&gt; search for @other and change all of the functions in there<\/li>\r\n<\/ul>\r\n\r\n\r\n\r\n<h1 class=\"wp-block-heading\">Support<\/h1>\r\n\r\n\r\n\r\n<ul class=\"wp-block-list\">\r\n<li><a href=\"https:\/\/fivemx.com\/my-account\" data-type=\"URL\" data-id=\"https:\/\/fivemx.com\/my-account\">Write a ticket for any questions!<\/a><\/li>\r\n<\/ul>\r\n","protected":false},"excerpt":{"rendered":"<pre dir=\"ltr\"><strong>Caract\u00e9ristiques<\/strong>\r\n\r\n- UI : Interface utilisateur moderne et \u00e9pur\u00e9e, une interface utilisateur qui fera tomber amoureux les gens de votre serveur. - V\u00caTEMENTS : Prise en charge par d\u00e9faut des v\u00eatements QB, RAID et FiveM-Appearance avec les options pour ajouter\/modifier comme vous le souhaitez. - DISCORD : Permettre aux joueurs d&#039;avoir plus de personnages avec un r\u00f4le Discord. Par exemple, le joueur peut ouvrir par d\u00e9faut 2 personnages mais il pourra en ouvrir plus s&#039;il a un r\u00f4le Discord (que vous pouvez d\u00e9finir dans la configuration) (bien s\u00fbr, tous les nombres peuvent \u00eatre modifi\u00e9s). - SUPPRESSION DE PERSONNAGE : Les joueurs devront \u00e9crire leur nom de personnage exact afin de supprimer leur personnage, \u00e9viter aux joueurs de pleurer apr\u00e8s avoir supprim\u00e9 leur personnage par erreur :slight_smile:\r\n<\/pre>","protected":false},"featured_media":50314,"comment_status":"open","ping_status":"closed","template":"","meta":[],"product_brand":[],"product_cat":[512,2907],"product_tag":[],"class_list":["post-50313","product","type-product","status-publish","has-post-thumbnail","product_cat-qbcore-scripts","product_cat-qbox-scripts","first","instock","sale","downloadable","virtual","taxable","purchasable","product-type-simple"],"_links":{"self":[{"href":"https:\/\/fivemx.com\/fr\/wp-json\/wp\/v2\/product\/50313","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=50313"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/fivemx.com\/fr\/wp-json\/wp\/v2\/media\/50314"}],"wp:attachment":[{"href":"https:\/\/fivemx.com\/fr\/wp-json\/wp\/v2\/media?parent=50313"}],"wp:term":[{"taxonomy":"product_brand","embeddable":true,"href":"https:\/\/fivemx.com\/fr\/wp-json\/wp\/v2\/product_brand?post=50313"},{"taxonomy":"product_cat","embeddable":true,"href":"https:\/\/fivemx.com\/fr\/wp-json\/wp\/v2\/product_cat?post=50313"},{"taxonomy":"product_tag","embeddable":true,"href":"https:\/\/fivemx.com\/fr\/wp-json\/wp\/v2\/product_tag?post=50313"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}