getVariable – Talk

From Bohemia Interactive Community
Revision as of 11:48, 12 January 2008 by Raedor (talk | contribs)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Only way I found to see if variable had even been assigned:

 if (format ["%1", _obj getVariable "myVar"] == "<NULL>") then {
  // initialize it
 };

--Doolittle 06:14, 11 January 2008 (CET)

This also works:

  _check = _obj getVariable "myVar";
  if (isNil "_check") then
  {
     // initialize it
  };

--raedor 10:47, 12 January 2008 (CET)