CfgFunctions – Arma 3
Jump to navigation
Jump to search
Export Function:
m (updated list of functions and added export function to the page) |
m (removed mods from list) |
||
Line 2,033: | Line 2,033: | ||
| | | | ||
:[[BIS_fnc_3DENAttributeDoorStates]] | :[[BIS_fnc_3DENAttributeDoorStates]] | ||
|- | |- | ||
!A3_Expansion | !A3_Expansion |
Revision as of 11:11, 16 December 2018
Last updated: 1.87
Export Function:
_export = format ["Last updated: {{GVI|arma3|%1}}",productVersion # 2 / 100] + endl + "{| class='wikitable sortable' border='1' style='border-collapse:collapse; font-size:100%;' cellpadding='3px'
! Group
! Category
! Functions";
{//Config
_indexConfig = _forEachIndex;
_nameConfig = _x # 0;
{//Tags
_nameTAG = configName _x;
_valueTAG = getText (_x >> "tag");
if (_valueTAG == "") then {_valueTag = configName _x};
{//Categories
_nameCategory = configName _x;
_export = _export + endl + "|-" + endl + "!" + _nameTAG + endl + "!" + _nameCategory + endl + "|";
_pathCategory= getText (_x >> "file");
{//Functions
_export = _export + endl + ":" + "[[BIS_fnc_" + (configName _x) + "]]";
} forEach ((_nameConfig >> "CfgFunctions" >> _nameTAG >> _nameCategory) call BIS_fnc_returnChildren);
} forEach ((_nameConfig >> "CfgFunctions" >> configName _x) call BIS_fnc_returnChildren);
} forEach ((_nameConfig >> "CfgFunctions") call BIS_fnc_returnChildren);
} foreach [[configFile,"configFile"]];
_export = _export + endl + "|-|}";
copyToClipboard _export;