config / name: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<dd class="notedate">Posted on ([^<>]+) " to "<dd class="notedate">Posted on $1</dd> ")
m (Text replacement - "ArmA3" to "{{arma3}}")
Line 26: Line 26:
<dd class="notedate">Posted on Apr 1, 2014 - 00:02</dd>
<dd class="notedate">Posted on Apr 1, 2014 - 00:02</dd>
<dt class="note">[[User:ffur2007slx2_5|ffur2007slx2_5]]<dd class="note">
<dt class="note">[[User:ffur2007slx2_5|ffur2007slx2_5]]<dd class="note">
(ArmA3 1.14) config / name can be composed to config >> name [[String]] or [[Array]] format via [[BIS_fnc_configPath]]. E.g.
({{arma3}} 1.14) config / name can be composed to config >> name [[String]] or [[Array]] format via [[BIS_fnc_configPath]]. E.g.
<code>
<code>
[([[configFile]]/"ATMineCrater"/"MissileCircleDust"),""] [[call]] [[BIS_fnc_configPath]];
[([[configFile]]/"ATMineCrater"/"MissileCircleDust"),""] [[call]] [[BIS_fnc_configPath]];

Revision as of 17:11, 31 January 2021

Hover & click on the images for description

Description

Description:
Description needed
Groups:
Config

Syntax

Syntax:
Syntax needed
Parameters:
config: Config
name: String
Return Value:
Return value needed

Examples

Example 1:
configFile / "CfgVehicles";

Additional Information

See also:
See also needed

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
Posted on Apr 1, 2014 - 00:02
ffur2007slx2_5
(Arma 3 1.14) config / name can be composed to config >> name String or Array format via BIS_fnc_configPath. E.g. [(configFile/"ATMineCrater"/"MissileCircleDust"),""] call BIS_fnc_configPath; //return: "configfile >> "ATMineCrater" >> "MissileCircleDust""
[(configFile/"ATMineCrater"/"MissileCircleDust"),[]] call BIS_fnc_configPath; //return: ["configfile","ATMineCrater","MissileCircleDust"]