This may have a relatively simple solution:
I have an array containing group names with noone assigned to the group (utilized the deleteVehicle command on original unit for each group). I call a random group name(s) during one iteration of the script, and want to remove that groupname from the array (although I want to reinsert it at a later point in the script). The most important lines of code are as follows:
_group = [fia_group1, fia_group2, fia_group3, fia_group4, fia_group5, fia_group6, fia_group7]
_groupLD = random 6
_groupD = _groupLD - (_groupLD mod 1)
_groupL = (_group select _groupD)
Basically, I want to remove _groupL from _group. Later, I will add it back. As I said, I'm sure it has a simple solution, but it's really starting to hack me off.
Any ideas?