mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
32 lines
540 B
Plaintext
32 lines
540 B
Plaintext
/*
|
|
* Author: esteldunedain
|
|
* Returns the metadata of a setting if it exists
|
|
*
|
|
* Arguments:
|
|
* 0: Name of the setting (String)
|
|
*
|
|
* Return Value:
|
|
* Setting Data (Array)
|
|
* 0: _name
|
|
* 1: _typeName
|
|
* 2: _isClientSetable
|
|
* 3: _localizedName
|
|
* 4: _localizedDescription
|
|
* 5: _possibleValues
|
|
* 6: _isForced
|
|
* 7: _defaultValue
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
EXPLODE_1_PVT(_this,_name);
|
|
|
|
private ["_value"];
|
|
_value = [];
|
|
{
|
|
if ((_x select 0) == _name) exitWith {_value = _x};
|
|
} forEach GVAR(settings);
|
|
|
|
_value
|