{"id":174619,"date":"2024-11-15T20:37:54","date_gmt":"2024-11-15T19:37:54","guid":{"rendered":"https:\/\/fivem-mods.net\/?post_type=product&#038;p=174619"},"modified":"2025-12-24T07:29:56","modified_gmt":"2025-12-24T06:29:56","slug":"aty-basteln","status":"publish","type":"product","link":"https:\/\/fivemx.com\/de\/aty-crafting\/","title":{"rendered":"Aty-Herstellung"},"content":{"rendered":"<p><iframe title=\"FiveM Crafting and Attachment System - Enhance Crafting and Customization | Aty Scripts\" width=\"1290\" height=\"726\" src=\"https:\/\/www.youtube.com\/embed\/cnHIkoKkdw4?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<h3>Config file<\/h3>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">Config = {\r\n    Framework = \"qb\", -- \"qb\" or \"esx\" or \"oldesx\"\r\n    MySQL = \"oxmysql\", -- \"oxmysql\" or \"ghmattimysql\" or false\r\n    Tebex = \"https:\/\/ak4y.tebex.io\/\",\r\n    BoostPrice = 100,\r\n    BoostPercentage = 0.5, -- 0.5 = 50%\r\n\r\n    CoreExport = function()\r\n        if Config.Framework == \"qb\" then\r\n            return exports[\"qb-core\"]:GetCoreObject()\r\n        elseif Config.Framework == \"esx\" then\r\n            return exports[\"es_extended\"]:getSharedObject()\r\n        end\r\n    end,\r\n\r\n    CraftingTables = {\r\n        [\"police\"] = {\r\n            Coords = vector3(454.3285, -979.7649, 30.6896),\r\n            Job = \"police\", -- all or job name\r\n            Grade = 2, -- minimum job grade\r\n            Distance = 1.0, -- distance to interact\r\n            Marker = {\r\n                Type = 2,\r\n                Size = vector3(0.5, 0.5, 0.5),\r\n                Color = {\r\n                    r = 255,\r\n                    g = 255,\r\n                    b = 255,\r\n                    a = 200\r\n                }\r\n            },\r\n            Blip = {\r\n                Sprite = 110,\r\n                Color = 3,\r\n                Label = \"Police Crafting Table\"\r\n            },\r\n            Categories = {\r\n                {\r\n                    categoryCode = \"all\",\r\n                    categoryLabel = \"All\",\r\n                },\r\n                {\r\n                    categoryCode = \"weapons\",\r\n                    categoryLabel = \"Weapons\",\r\n                },\r\n                {\r\n                    categoryCode = \"consumables\",\r\n                    categoryLabel = \"Consumables\",\r\n                },\r\n                {\r\n                    categoryCode = \"attachments\",\r\n                    categoryLabel = \"Attachments\",\r\n                },\r\n            },\r\n            Items = {\r\n                {\r\n                    itemCategory = \"consumables\",\r\n                    itemCode = \"bandage\",\r\n                    itemLabel = \"Bandage\",\r\n                    itemImage = \"bandage.png\",\r\n                    itemLevel = 1,\r\n                    itemDuration = 10,\r\n                    itemPrice = 50,\r\n                    itemExp = 10,\r\n                    itemDesc = \"A simple bandage\",\r\n                    ingredients = {\r\n                        { itemCode = \"bandage\", quantity = 5, label = \"Cloth\", image = \"cloth.png\" },\r\n                    }\r\n                },\r\n                {\r\n                    itemCategory = \"attachments\",\r\n                    itemCode = \"clip_attachment\",\r\n                    itemLabel = \"Clip\",\r\n                    itemImage = \"clip.png\",\r\n                    itemLevel = 1,\r\n                    itemDuration = 20,\r\n                    itemPrice = 100,\r\n                    itemExp = 15,\r\n                    itemDesc = \"A simple clip attachment\",\r\n                    ingredients = {\r\n                        { itemCode = \"iron\", quantity = 2, label = \"Iron\", image = \"iron.png\" },\r\n                    }\r\n                },\r\n                {\r\n                    itemCategory = \"weapons\",\r\n                    itemCode = \"weapon_pistol\",\r\n                    itemLabel = \"Pistol MKII\",\r\n                    itemImage = \"pistol.png\",\r\n                    itemLevel = 1,\r\n                    itemDuration = 30,\r\n                    itemPrice = 100,\r\n                    itemExp = 15,\r\n                    itemDesc = \"A simple pistol\",\r\n                    ingredients = {\r\n                        { itemCode = \"iron\", quantity = 5, label = \"Iron\", image = \"iron.png\" },\r\n                        { itemCode = \"wood\", quantity = 2, label = \"Wood\", image = \"wood.png\" }\r\n                    }\r\n                },\r\n                {\r\n                    itemCategory = \"weapons\",\r\n                    itemCode = \"rifle\",\r\n                    itemLabel = \"Rifle MKII\",\r\n                    itemImage = \"rifle.png\",\r\n                    itemLevel = 2,\r\n                    itemDuration = 60,\r\n                    itemPrice = 200,\r\n                    itemExp = 30,\r\n                    itemDesc = \"A simple rifle\",\r\n                    ingredients = {\r\n                        { itemCode = \"iron\", quantity = 10, label = \"Iron\", image = \"iron.png\" },\r\n                        { itemCode = \"wood\", quantity = 5, label = \"Wood\", image = \"wood.png\" }\r\n                    }\r\n                },\r\n                {\r\n                    itemCategory = \"weapons\",\r\n                    itemCode = \"shotgun\",\r\n                    itemLabel = \"Shotgun MKII\",\r\n                    itemImage = \"shotgun.png\",\r\n                    itemLevel = 3,\r\n                    itemDuration = 60,\r\n                    itemPrice = 300,\r\n                    itemExp = 45,\r\n                    itemDesc = \"A simple shotgun\",\r\n                    ingredients = {\r\n                        { itemCode = \"iron\", quantity = 15, label = \"Iron\", image = \"iron.png\" },\r\n                        { itemCode = \"wood\", quantity = 10, label = \"Wood\", image = \"wood.png\" }\r\n                    }\r\n                },\r\n                {\r\n                    itemCategory = \"weapons\",\r\n                    itemCode = \"sniper\",\r\n                    itemLabel = \"Sniper MKII\",\r\n                    itemImage = \"sniper.png\",\r\n                    itemLevel = 4,\r\n                    itemDuration = 60,\r\n                    itemPrice = 400,\r\n                    itemExp = 60,\r\n                    itemDesc = \"A simple sniper\",\r\n                    ingredients = {\r\n                        { itemCode = \"iron\", quantity = 20, label = \"Iron\", image = \"iron.png\" },\r\n                        { itemCode = \"wood\", quantity = 15, label = \"Wood\", image = \"wood.png\" }\r\n                    }\r\n                },\r\n            }\r\n        }\r\n    },\r\n\r\n    Levels = {\r\n        [1] = {exp = 0},\r\n        [2] = {exp = 50},\r\n        [3] = {exp = 100},\r\n        [4] = {exp = 150},\r\n        [5] = {exp = 250},\r\n        [6] = {exp = 350},\r\n        [7] = {exp = 500},\r\n        [8] = {exp = 700},\r\n        [9] = {exp = 1000},\r\n        [10] = {exp = 1300},\r\n        [11] = {exp = 1600},\r\n        [12] = {exp = 2000},\r\n        [13] = {exp = 2500},\r\n        [14] = {exp = 3000},\r\n        [15] = {exp = 4000},\r\n    },\r\n    \r\n    AttachmentItems ={\r\n        [\"clip\"] = \"clip_attachment\",\r\n        [\"silencer\"] = \"suppressor_attachment\",\r\n        [\"flashlight\"] = \"flashlight_attachment\",\r\n        [\"scope\"] = \"smallscope_attachment\",\r\n        [\"grip\"] = \"grip_attachment\",\r\n    },\r\n\r\n    Attachments = {\r\n        {\r\n            itemCode = \"weapon_pistol\",\r\n            attachments = {\r\n                [\"clip\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_PISTOL_CLIP_02\"),\r\n                    label = \"Extended Clip\",\r\n                },\r\n                [\"silencer\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_PI_SUPP_02\"),\r\n                    label = \"Silencer\",\r\n                },\r\n                [\"flashlight\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_PI_FLSH\"),\r\n                    label = \"Flashlight\",\r\n                },\r\n            }\r\n        },\r\n        {\r\n            itemCode = \"weapon_combatpistol\",\r\n            attachments = {\r\n                [\"clip\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_COMBATPISTOL_CLIP_02\"),\r\n                    label = \"Extended Clip\",\r\n                },\r\n                [\"silencer\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_PI_SUPP\"),\r\n                    label = \"Silencer\",\r\n                },\r\n                [\"flashlight\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_PI_FLSH\"),\r\n                    label = \"Flashlight\",\r\n                },\r\n            }\r\n        },\r\n        {\r\n            itemCode = \"weapon_appistol\",\r\n            attachments = {\r\n                [\"clip\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_APPISTOL_CLIP_02\"),\r\n                    label = \"Extended Clip\",\r\n                },\r\n                [\"silencer\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_PI_SUPP\"),\r\n                    label = \"Silencer\",\r\n                },\r\n                [\"flashlight\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_PI_FLSH\"),\r\n                    label = \"Flashlight\",\r\n                },\r\n            }\r\n        },\r\n        {\r\n            itemCode = \"weapon_microsmg\",\r\n            attachments = {\r\n                [\"clip\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_MICROSMG_CLIP_02\"),\r\n                    label = \"Extended Clip\",\r\n                },\r\n                [\"silencer\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_SUPP_02\"),\r\n                    label = \"Silencer\",\r\n                },\r\n                [\"flashlight\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_PI_FLSH\"),\r\n                    label = \"Flashlight\",\r\n                },\r\n                [\"scope\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_SCOPE_MACRO_02\"),\r\n                    label = \"Scope\",\r\n                },\r\n            }\r\n        },\r\n        {\r\n            itemCode = \"weapon_smg\",\r\n            attachments = {\r\n                [\"clip\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_SMG_CLIP_02\"),\r\n                    label = \"Extended Clip\",\r\n                },\r\n                [\"silencer\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_SUPP_02\"),\r\n                    label = \"Silencer\",\r\n                },\r\n                [\"flashlight\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_FLSH\"),\r\n                    label = \"Flashlight\",\r\n                },\r\n                [\"scope\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_SCOPE_MACRO_02\"),\r\n                    label = \"Scope\",\r\n                },\r\n            }\r\n        },\r\n        {\r\n            itemCode = \"weapon_assaultsmg\",\r\n            attachments = {\r\n                [\"clip\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_ASSAULTSMG_CLIP_02\"),\r\n                    label = \"Extended Clip\",\r\n                },\r\n                [\"silencer\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_SUPP_02\"),\r\n                    label = \"Silencer\",\r\n                },\r\n                [\"flashlight\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_FLSH\"),\r\n                    label = \"Flashlight\",\r\n                },\r\n                [\"scope\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_SCOPE_MACRO\"),\r\n                    label = \"Scope\",\r\n                },\r\n            }\r\n        },\r\n        {\r\n            itemCode = \"weapon_assaultrifle\",\r\n            attachments = {\r\n                [\"clip\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_ASSAULTRIFLE_CLIP_02\"),\r\n                    label = \"Extended Clip\",\r\n                },\r\n                [\"silencer\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_SUPP_02\"),\r\n                    label = \"Silencer\",\r\n                },\r\n                [\"flashlight\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_FLSH\"),\r\n                    label = \"Flashlight\",\r\n                },\r\n                [\"scope\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_SCOPE_MACRO\"),\r\n                    label = \"Scope\",\r\n                },\r\n                [\"grip\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_AFGRIP\"),\r\n                    label = \"Grip\",\r\n                },\r\n            }\r\n        },\r\n        {\r\n            itemCode = \"weapon_carbinerifle\",\r\n            attachments = {\r\n                [\"clip\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_CARBINERIFLE_CLIP_02\"),\r\n                    label = \"Extended Clip\",\r\n                },\r\n                [\"silencer\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_SUPP_02\"),\r\n                    label = \"Silencer\",\r\n                },\r\n                [\"flashlight\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_FLSH\"),\r\n                    label = \"Flashlight\",\r\n                },\r\n                [\"scope\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_SCOPE_MEDIUM\"),\r\n                    label = \"Scope\",\r\n                },\r\n                [\"grip\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_AFGRIP\"),\r\n                    label = \"Grip\",\r\n                },\r\n            }\r\n        },\r\n        {\r\n            itemCode = \"weapon_advancedrifle\",\r\n            attachments = {\r\n                [\"clip\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_ADVANCEDRIFLE_CLIP_02\"),\r\n                    label = \"Extended Clip\",\r\n                },\r\n                [\"silencer\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_SUPP\"),\r\n                    label = \"Silencer\",\r\n                },\r\n                [\"flashlight\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_FLSH\"),\r\n                    label = \"Flashlight\",\r\n                },\r\n                [\"scope\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_SCOPE_SMALL\"),\r\n                    label = \"Scope\",\r\n                },\r\n                [\"grip\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_AFGRIP\"),\r\n                    label = \"Grip\",\r\n                },\r\n            }\r\n        },\r\n        {\r\n            itemCode = \"weapon_specialcarbine\",\r\n            attachments = {\r\n                [\"clip\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_SPECIALCARBINE_CLIP_02\"),\r\n                    label = \"Extended Clip\",\r\n                },\r\n                [\"silencer\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_SUPP_02\"),\r\n                    label = \"Silencer\",\r\n                },\r\n                [\"flashlight\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_FLSH\"),\r\n                    label = \"Flashlight\",\r\n                },\r\n                [\"scope\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_SCOPE_MEDIUM\"),\r\n                    label = \"Scope\",\r\n                },\r\n                [\"grip\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_AFGRIP\"),\r\n                    label = \"Grip\",\r\n                },\r\n            }\r\n        },\r\n        {\r\n            itemCode = \"weapon_bullpuprifle\",\r\n            attachments = {\r\n                [\"clip\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_BULLPUPRIFLE_CLIP_02\"),\r\n                    label = \"Extended Clip\",\r\n                },\r\n                [\"silencer\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_SUPP\"),\r\n                    label = \"Silencer\",\r\n                },\r\n                [\"flashlight\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_FLSH\"),\r\n                    label = \"Flashlight\",\r\n                },\r\n                [\"scope\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_SCOPE_SMALL\"),\r\n                    label = \"Scope\",\r\n                },\r\n                [\"grip\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_AFGRIP\"),\r\n                    label = \"Grip\",\r\n                },\r\n            }\r\n        },\r\n        {\r\n            itemCode = \"weapon_pumpshotgun\",\r\n            attachments = {\r\n                [\"clip\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_PUMPSHOTGUN_CLIP_02\"),\r\n                    label = \"Extended Clip\",\r\n                },\r\n                [\"silencer\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_SR_SUPP\"),\r\n                    label = \"Silencer\",\r\n                },\r\n                [\"flashlight\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_FLSH\"),\r\n                    label = \"Flashlight\",\r\n                },\r\n            }\r\n        },\r\n        {\r\n            itemCode = \"weapon_sawnoffshotgun\",\r\n            attachments = {\r\n                [\"clip\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_SAWNOFFSHOTGUN_CLIP_02\"),\r\n                    label = \"Extended Clip\",\r\n                },\r\n                [\"silencer\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_SUPP\"),\r\n                    label = \"Silencer\",\r\n                },\r\n                [\"flashlight\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_FLSH\"),\r\n                    label = \"Flashlight\",\r\n                },\r\n            }\r\n        },\r\n        {\r\n            itemCode = \"weapon_assaultshotgun\",\r\n            attachments = {\r\n                [\"clip\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_ASSAULTSHOTGUN_CLIP_02\"),\r\n                    label = \"Extended Clip\",\r\n                },\r\n                [\"silencer\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_SUPP_02\"),\r\n                    label = \"Silencer\",\r\n                },\r\n                [\"flashlight\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_FLSH\"),\r\n                    label = \"Flashlight\",\r\n                },\r\n            }\r\n        },\r\n        {\r\n            itemCode = \"weapon_heavysniper\",\r\n            attachments = {\r\n                [\"scope\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_SCOPE_LARGE\"),\r\n                    label = \"Scope\",\r\n                },\r\n            }\r\n        },\r\n        {\r\n            itemCode = \"weapon_snspistol\",\r\n            attachments = {\r\n                [\"clip\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_SNSPISTOL_CLIP_02\"),\r\n                    label = \"Extended Clip\",\r\n                },\r\n                [\"silencer\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_PI_SUPP\"),\r\n                    label = \"Silencer\",\r\n                },\r\n                [\"flashlight\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_PI_FLSH\"),\r\n                    label = \"Flashlight\",\r\n                },\r\n            }\r\n        },\r\n        {\r\n            itemCode = \"weapon_gusenberg\",\r\n            attachments = {\r\n                [\"clip\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_GUSENBERG_CLIP_02\"),\r\n                    label = \"Extended Clip\",\r\n                },\r\n                [\"silencer\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_PI_SUPP\"),\r\n                    label = \"Silencer\",\r\n                },\r\n                [\"flashlight\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_PI_FLSH\"),\r\n                    label = \"Flashlight\",\r\n                },\r\n            }\r\n        },\r\n        {\r\n            itemCode = \"weapon_specialcarbine_mk2\",\r\n            attachments = {\r\n                [\"clip\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_SPECIALCARBINE_MK2_CLIP_02\"),\r\n                    label = \"Extended Clip\",\r\n                },\r\n                [\"silencer\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_SUPP_02\"),\r\n                    label = \"Silencer\",\r\n                },\r\n                [\"flashlight\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_FLSH\"),\r\n                    label = \"Flashlight\",\r\n                },\r\n                [\"scope\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_SCOPE_MEDIUM_MK2\"),\r\n                    label = \"Scope\",\r\n                },\r\n                [\"grip\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_AFGRIP_02\"),\r\n                    label = \"Grip\",\r\n                },\r\n            }\r\n        },\r\n        {\r\n            itemCode = \"weapon_bullpuprifle_mk2\",\r\n            attachments = {\r\n                [\"clip\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_BULLPUPRIFLE_MK2_CLIP_02\"),\r\n                    label = \"Extended Clip\",\r\n                },\r\n                [\"silencer\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_SUPP_02\"),\r\n                    label = \"Silencer\",\r\n                },\r\n                [\"flashlight\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_FLSH\"),\r\n                    label = \"Flashlight\",\r\n                },\r\n                [\"scope\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_SCOPE_SMALL_MK2\"),\r\n                    label = \"Scope\",\r\n                },\r\n                [\"grip\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_AFGRIP_02\"),\r\n                    label = \"Grip\",\r\n                },\r\n            }\r\n        },\r\n        {\r\n            itemCode = \"weapon_pumpshotgun_mk2\",\r\n            attachments = {\r\n                [\"clip\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_PUMPSHOTGUN_MK2_CLIP_02\"),\r\n                    label = \"Extended Clip\",\r\n                },\r\n                [\"silencer\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_SR_SUPP_03\"),\r\n                    label = \"Silencer\",\r\n                },\r\n                [\"flashlight\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_FLSH\"),\r\n                    label = \"Flashlight\",\r\n                },\r\n            }\r\n        },\r\n        {\r\n            itemCode = \"weapon_marksmanrifle_mk2\",\r\n            attachments = {\r\n                [\"clip\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_MARKSMANRIFLE_MK2_CLIP_02\"),\r\n                    label = \"Extended Clip\",\r\n                },\r\n                [\"silencer\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_SUPP_02\"),\r\n                    label = \"Silencer\",\r\n                },\r\n                [\"flashlight\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_FLSH\"),\r\n                    label = \"Flashlight\",\r\n                },\r\n                [\"scope\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_SCOPE_MEDIUM_MK2\"),\r\n                    label = \"Scope\",\r\n                },\r\n                [\"grip\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_AR_AFGRIP_02\"),\r\n                    label = \"Grip\",\r\n                },\r\n            }\r\n        },\r\n        {\r\n            itemCode = \"weapon_revolver_mk2\",\r\n            attachments = {\r\n                [\"clip\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_REVOLVER_MK2_CLIP_02\"),\r\n                    label = \"Extended Clip\",\r\n                },\r\n                [\"silencer\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_PI_SUPP_02\"),\r\n                    label = \"Silencer\",\r\n                },\r\n                [\"flashlight\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_PI_FLSH_03\"),\r\n                    label = \"Flashlight\",\r\n                },\r\n            }\r\n        },\r\n        {\r\n            itemCode = \"weapon_doubleaction\",\r\n            attachments = {\r\n                [\"clip\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_DOUBLEACTION_CLIP_02\"),\r\n                    label = \"Extended Clip\",\r\n                },\r\n                [\"silencer\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_PI_SUPP_02\"),\r\n                    label = \"Silencer\",\r\n                },\r\n                [\"flashlight\"] = {\r\n                    hash = GetHashKey(\"COMPONENT_AT_PI_FLSH_03\"),\r\n                    label = \"Flashlight\",\r\n                },\r\n            }\r\n        }\r\n    }\r\n}<\/pre>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<div class=\"flex-shrink-0 flex flex-col relative items-end\">\n<div>\n<div class=\"pt-0\">\n<div class=\"gizmo-bot-avatar flex h-8 w-8 items-center justify-center overflow-hidden rounded-full\">\n<div class=\"relative p-1 rounded-sm flex items-center justify-center bg-token-main-surface-primary text-token-text-primary h-8 w-8\"><\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"group\/conversation-turn relative flex w-full min-w-0 flex-col agent-turn\">\n<div class=\"flex-col gap-1 md:gap-3\">\n<div class=\"flex max-w-full flex-col flex-grow\">\n<div class=\"min-h-8 text-message flex w-full flex-col items-end gap-2 whitespace-normal break-words [.text-message+&amp;]:mt-5\" dir=\"auto\" data-message-author-role=\"assistant\" data-message-id=\"6aeb79d0-13ad-4408-b59e-465e96750d2e\" data-message-model-slug=\"gpt-4o\">\n<div class=\"flex w-full flex-col gap-1 empty:hidden first:pt-[3px]\">\n<div class=\"markdown prose w-full break-words dark:prose-invert dark\">\n<p>Enhance your FiveM server with a <strong>Crafting and Attachment System<\/strong> that brings innovation, customization, and smooth performance to your players. Here&#8217;s what it offers:<\/p>\n<ul>\n<li><strong>Dynamic Crafting Tables<\/strong>: Set up crafting stations tailored to specific jobs or make them accessible to everyone, giving you full control over crafting permissions.<\/li>\n<li><strong>Real-Time Crafting Progress<\/strong>: Players can monitor their crafting status live, offering a seamless and engaging user experience.<\/li>\n<li><strong>Boosting Integration<\/strong>: <a href=\"https:\/\/fivemx.com\/complete-guide-fivem-server-monetization\/\" data-wpil-monitor-id=\"1308\">Monetize your server<\/a> by allowing players to purchase crafting time reductions through Tebex, boosting both engagement and revenue potential.<\/li>\n<li><strong>Effortless Configuration<\/strong>: Easily expand your server\u2019s capabilities by adding new crafting tables, recipes, and materials to suit evolving player needs.<\/li>\n<li><strong>Weapon Attachment System<\/strong>: Introduce a new layer of gameplay with weapon enhancements, enabling players to customize and upgrade their guns.<\/li>\n<li><strong>Optimized Performance<\/strong>: Engineered for efficiency, the system ensures smooth performance, even with high player activity during crafting sessions.<\/li>\n<\/ul>\n<p>This comprehensive system not only enriches gameplay but also opens opportunities for server monetization and long-term player engagement.<\/p>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n","protected":false},"featured_media":174620,"comment_status":"open","ping_status":"closed","template":"","meta":[],"product_brand":[],"product_cat":[2349,96,512,2907,511],"product_tag":[],"class_list":["post-174619","product","type-product","status-publish","has-post-thumbnail","product_cat-fivem-crafting-scripts","product_cat-esx-scripts","product_cat-qbcore-scripts","product_cat-qbox-scripts","product_cat-standalone-scripts","first","instock","sale","downloadable","virtual","taxable","purchasable","product-type-simple"],"_links":{"self":[{"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/product\/174619","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/product"}],"about":[{"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/types\/product"}],"replies":[{"embeddable":true,"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/comments?post=174619"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/media\/174620"}],"wp:attachment":[{"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/media?parent=174619"}],"wp:term":[{"taxonomy":"product_brand","embeddable":true,"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/product_brand?post=174619"},{"taxonomy":"product_cat","embeddable":true,"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/product_cat?post=174619"},{"taxonomy":"product_tag","embeddable":true,"href":"https:\/\/fivemx.com\/de\/wp-json\/wp\/v2\/product_tag?post=174619"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}