as we know there are scripts to give yourself a set of items you have listed in the script below

Code:
local masks = {}

masks["alienware"] = 'normal'
...

managers.blackmarket:_setup_masks()
for name,quality in pairs(masks) do
Global.blackmarket_manager.masks[ name ].unlocked = true
managers.blackmarket:add_to_inventory( quality, "masks", name, false )
end

local materials = {}

materials["cracks1"] = 'normal'
...

managers.blackmarket:_setup_masks()
for name,quality in pairs( materials ) do
managers.blackmarket:get_inventory_category( "materials" )
managers.blackmarket:add_to_inventory( quality, "materials", name, false )
end

local colors = {}
...
end
local textures = {}
...
end
ive looked around the forums to find a similar script for weapon mods, but couldnt find one
so i tried to rewrite the script for weapon mods but i havent been successful (the best ive gotten is disabling all weapons )

so i want to ask you if you know the weapon mod variant of the script or try rewrite the script

thanks in advance