fn_setFSMVariable.sqf 298 B

123456789101112
  1. private ["_this", "_id", "_var", "_value"];
  2. _id = [_this,0] call BIS_fnc_param;
  3. _var = [_this,1,"",[""]] call BIS_fnc_param;
  4. _value = [_this,2] call BIS_fnc_param;
  5. if (isServer) then
  6. {
  7. _id setFSMVariable [_var, _value];
  8. } else {
  9. [_this, "AW_fnc_setFSMVariable", false, false] call BIS_fnc_MP;
  10. }