mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
18 lines
319 B
Plaintext
18 lines
319 B
Plaintext
/*
|
|
* Author: Glowbal
|
|
* Get the variable Informations
|
|
*
|
|
* Arguments:
|
|
* 0: Variable Name <STRING>
|
|
*
|
|
* Return Value:
|
|
* Variable Metadata <ARRAY>
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_varName"];
|
|
|
|
+ (missionNamespace getVariable [format [QGVAR(OBJECT_VARIABLES_STORAGE_%1), _varName], []])
|