From 6b7a62183c36f45b1e414904d245ee21e65ac31b Mon Sep 17 00:00:00 2001 From: via <3+via@devteam.austac.net> Date: Fri, 1 May 2026 14:09:53 +0000 Subject: [PATCH] Update equipment.sqf --- equipment.sqf.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/equipment.sqf.md b/equipment.sqf.md index dac1297..5192865 100644 --- a/equipment.sqf.md +++ b/equipment.sqf.md @@ -1 +1,8 @@ -do this bitch \ No newline at end of file +//copies all playable units loadout and saves to clipboard +AllPlayableUnitsItens = []; +{AllPlayableUnitsItens = AllPlayableUnitsItens + [(headgear _x)] + [(goggles _x)] + (assignedItems _x) + (backpackitems _x)+ [(backpack _x)] + (uniformItems _x) + [(uniform _x)] + (vestItems _x) + [(vest _x)] + (magazines _x) + (weapons _x) + (primaryWeaponItems _x)+ (primaryWeaponMagazine _x) + (handgunMagazine _x) + (handgunItems _x) + (secondaryWeaponItems _x) + (secondaryWeaponMagazine _x)} forEach (playableUnits + switchableUnits); +AllPlayableUnitsItens = AllPlayableUnitsItens select {count _x > 0}; +AllPlayableUnitsItens = AllPlayableUnitsItens arrayIntersect AllPlayableUnitsItens; +copyToClipboard str AllPlayableUnitsItens; + +//notepad ++ find and replace , with \n for a nicer list \ No newline at end of file