I have a group with 3 West soldiers (I'm the leader) and 2 dogs.
I want an array with all the dogs, that's all.
I got this :
_group = _this select 0
_dogs = []
"if (typeof _x == "TCP_TestDog") then {[_dogs = _dogs + [_x]}" foreach Units _group
hint format ["%1",_dogs]
The error is unknown operator TCP_testdog...
What's wrong with it?