Please someone,
Can you help me figure this out, i have a function which doesn't seem to work in ArmAII.
I've tracked the problem down to a while do loop, and made this simple function to bug test.
private["_i","_rawaddress"]
_rawaddress = [];
_i = 0;
while {_i < 10} do
{
_i = _i + 1;
_rawaddress = _rawaddress + [_i];
};
_rawaddress
However when run the function returns <null>, please for the love of god show me the problem (i'm tearing my hair out).