The following commands lack an array version:
- addItemToBackpack
- addItemToVest
- addItemToUniform
This prevents the user from adding multiple items to a specific container at once.
Example:
Add a couple of red chemlights to the uniform:
this addItemToUniform "Chemlight_red";
this addItemToUniform "Chemlight_red";
By creating an array version of this commands, the code would be the following:
_x addItemToUniform ["Chemlight_red",2]
This would allow the scenario creator and/or scripter to save time and resources when producing user content, as well as allowing for an easier to read and cleaner code.