mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
ffaa195fe5
* Fixed headers to work with silentspike python script * Fixed rest of the files * Fixed ace-team
32 lines
620 B
Plaintext
32 lines
620 B
Plaintext
/*
|
|
* Author: esteldunedain
|
|
* Sets the value of an ACE_Parameter and makes it public.
|
|
*
|
|
* Arguments:
|
|
* 0: Parameter name <STRING>
|
|
* 1: Value <BOOL, NUMBER>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* ["Name", 5] call ace_common_fnc_setParameter
|
|
*
|
|
* 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;
|