Squad
ReKit [20MB]
 This topic has been pinned, so it's probably important
Jhett  [developer] 9 Jul @ 9:23pm
How to Use
1. Install ModLoader
Install ModLoader on Steam
Then load its injection layer:
ModLoader_v1

This will generate a file at:
/Saved/ModLoader/ModLoader.json

2. Add ReKit to the ModLoader Config
In that file, add the path:
"Blueprint'/ReKit/BP_ReKit.BP_ReKit_C'"

Or paste in the full config:
{ "mods": [ "Blueprint'/ReKit/BP_ReKit.BP_ReKit_C'" ] }

3. Start the Map
Once ModLoader is active, roll into any map. ReKit will now be running and ready to replace your loadouts!

4. Customize ReKit Loadouts
After launching once with ReKit, it will generate:
/Saved/ModLoader/Rekit/Rekit.json

Inside this file, you can:
  • Enable ForceDefaultLoadout to override all kits
  • Configure DefaultLoadout for fallback kits
  • Add or override specific roles using "Roles"
  • Add multiple items per inventory slot (slots 0–9)

🔍 Item Parameters
Each item entry supports the following optional parameters:
  • Count – How many of the item to give (e.g., 1, 2, -1 has no function)
  • CanRearm – Whether the item can be rearmed at an ammo source (true or false)

🧰 Example: Unarmed Default Loadout
"DefaultLoadout": { "0": [ { "Item": "Blueprint'/Game/Blueprints/Items/Unarmed/BP_Surrender.BP_Surrender_C'", "Count": -1, "CanRearm": false } ] }

📘 Example: USA Squad Leader Loadout
"USA_SL_01": { "0": [ { "Item": "Blueprint'/Game/Blueprints/Items/Rifles/BP_M4A1_Foregrip_Tracer.BP_M4A1_Foregrip_Tracer_C'" } ], "1": [ { "Item": "Blueprint'/Game/Blueprints/Items/Pistols/BP_M17MHS.BP_M17MHS_C'" }, { "Item": "Blueprint'/Game/Blueprints/Items/Melee/BP_M9Bayonet.BP_M9Bayonet_C'", "CanRearm": false } ], "2": [ { "Item": "Blueprint'/Game/Blueprints/Items/Grenades/BP_M67Frag.BP_M67Frag_C'" } ], "3": [ { "Item": "Blueprint'/Game/Blueprints/Items/Grenades/SmokeGrenades/M18/BP_M18Smoke_Parent.BP_M18Smoke_Parent_C'" }, { "Item": "Blueprint'/Game/Blueprints/Items/Grenades/SmokeGrenades/M18/BP_M18Smoke_Red.BP_M18Smoke_Red_C'" }, { "Item": "Blueprint'/Game/Blueprints/Items/Grenades/SmokeGrenades/M18/BP_M18Smoke_Blue.BP_M18Smoke_Blue_C'" } ], "4": [ { "Item": "Blueprint'/Game/Blueprints/Items/EquippableItems/BP_Generic_FieldDressing.BP_Generic_FieldDressing_C'" } ], "5": [ { "Item": "Blueprint'/Game/Blueprints/Items/Binoculars/BP_US_Binoculars.BP_US_Binoculars_C'", "CanRearm": false }, { "Item": "Blueprint'/Game/Blueprints/Items/EquippableItems/BP_EquippableRallyPoint_USA.BP_EquippableRallyPoint_USA_C'" } ] } }
Last edited by Jhett; 9 Jul @ 10:02pm