mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
30 lines
502 B
Plaintext
30 lines
502 B
Plaintext
|
/*
|
||
|
* Author: CAA-Picard
|
||
|
* 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
|
||
|
*
|
||
|
* Public: No
|
||
|
*/
|
||
|
#include "script_component.hpp"
|
||
|
|
||
|
EXPLODE_1_PVT(_this,_name);
|
||
|
|
||
|
_value = objNull;
|
||
|
{
|
||
|
if ((_x select 0) == _name) exitWith {_value = _x};
|
||
|
} forEach GVAR(settings);
|
||
|
|
||
|
_value
|