mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
30 lines
565 B
Plaintext
30 lines
565 B
Plaintext
/*
|
|
* Author: Glowbal
|
|
* setVariable value
|
|
*
|
|
* Arguments:
|
|
* 0: Unit <OBJECT>
|
|
* 1: variableName <STRING>
|
|
* 2: value <ANY>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_unit", "_variable", "_value", "_global"];
|
|
|
|
if (isNil "_global") then {
|
|
private _definedVariable = [_variable] call FUNC(getDefinedVariableInfo);
|
|
|
|
_definedVariable params ["", "", ["_global", false]];
|
|
};
|
|
|
|
if (!isNil "_value") exitWith {
|
|
_unit setVariable [_variable, _value, _global];
|
|
};
|
|
|
|
_unit setVariable [_variable, nil, _global];
|