ACE3/addons/common/functions/fnc_getDefinedVariableInfo.sqf
Phyma ffaa195fe5 Conform function headers to coding guidelines (#5255)
* Fixed headers to work with silentspike python script

* Fixed rest of the files

* Fixed ace-team
2017-06-08 15:31:51 +02:00

21 lines
388 B
Plaintext

/*
* Author: Glowbal
* Get the variable Informations
*
* Arguments:
* 0: Variable Name <STRING>
*
* Return Value:
* Variable Metadata <ARRAY>
*
* Example:
* ["var"] call ace_common_fnc_getDefinedVariableInfo
*
* Public: No
*/
#include "script_component.hpp"
params ["_varName"];
+ (missionNamespace getVariable [format [QGVAR(OBJECT_VARIABLES_STORAGE_%1), _varName], []])