Setter for the various loadVest, loadBackpack etc.
So this would be for setting given containers current load regardless of what is in it.
Would be a percentage of the container max load like the mentioned loadVest, loadUnifrom etc comands are.
(backpackContainer player) setContainerLoad 0.4; //set backpack carried load to 40% (regardless of what it was prior) _ammobox1 setContainerLoad 0; //set ammobox load to 0% (regardless of what it was prior)
Additionally, there seems to be no way the get given ammobox/vehicle transport container loads, only reammo vehicle rearming ammocargo load.
And particular vest, uniform etc container loads.
So a generic getter for all containers, loadContainer (or additional syntax for the existing load which currently is just for the given soldier's carried load)
loadContainer <container>; //returns a number between 0 and 1 if (loadContainer _sack > 0) then { _sack setContainerLoad 0; hint "my sack is empty again"; };