mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
29 lines
542 B
Plaintext
29 lines
542 B
Plaintext
/*
|
|
* Author: esteldunedain
|
|
* Sets the value of an ACE_Parameter and makes it public.
|
|
*
|
|
* Arguments:
|
|
* 0: Parameter name <STRING>
|
|
* 1: Value
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Public: Yes
|
|
*
|
|
* Deprecated
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_name", "_value"];
|
|
|
|
// Hack to keep backward compatibility for the moment
|
|
if (typeName (missionNamespace getVariable _name) == "BOOL") then {
|
|
if (_value isEqualType 0) then {
|
|
_value = _value > 0;
|
|
};
|
|
};
|
|
|
|
missionNamespace setVariable [_name, _value];
|
|
publicVariable _name;
|