Loadout Types
Adding additional loadouts and items to a vehicle type is simple.
"SPAWNCODE" : {
"Weapons" : [
{
"name": "This is the name displayed on the menu",
"weapon": "This is the spawn code in-game",
"components": [],
"SkillRequired": "Only enabled with FMS and CMA Framework"
},
{
"name": "Sig MCX [CT]",
"weapon": "WEAPON_CARBINERIFLE",
"components": [
"COMPONENT_AT_AR_FLSH",
"COMPONENT_AT_SCOPE_MEDIUM"
],
"SkillRequired": "ARV"
}
],
"Objects" : [
{
"name":"This is the name displayed in the menu",
"hash":"This is the spawn code in game",
"maxAmount": Maximum Amount that can be carried by a player
},
{
"name":"Police Road Closed",
"hash":"prop_barrier_work05",
"maxAmount":1
}
]
},Last updated