GOD DAMNIT I FIGURED IT OUT -- USE GrpNull INSTEAD OF Null
PLS DELETE THIS THREAD
what the HELL is wrong here?
//my group id
_group = Null;
//output string
_string = "";
_string = format["%1\n",_group];
if ( True ) then
{
//some other group id
_group = EAST_1;
_string = _string + format["%1\n",_group];
};
_string = _string + format["%1\n",_group];
hint format["%1", _string];
the output is :
-----------------------------
Scalar bool array ....
EAST Alpha Black:1
Scalar bool array ....
-----------------------------
WHATWHATWHAAAAAT?
anyone seen this before? can anyone reproduce it for me?