config / name: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "]]<dd class="note">" to "]]</dt> <dd class="note">")
m (Text replacement - " \| *(([^=\| ]+)('''|\[\[)([^=\| ]+)) * \|p1=" to " |s1= $1 |p1=")
Line 9: Line 9:
| Returns [[Config | config]] entry with given name (alias for [[config greater greater name|config >> name]], slightly slower but with [[SQF Syntax#Rules_of_Precedence | higher precedence]]). Do not confuse with [[a_/_b|division operator /]]
| Returns [[Config | config]] entry with given name (alias for [[config greater greater name|config >> name]], slightly slower but with [[SQF Syntax#Rules_of_Precedence | higher precedence]]). Do not confuse with [[a_/_b|division operator /]]


| config '''/''' name
|s1=  config '''/''' name


|p1= config: [[Config]]
|p1= config: [[Config]]

Revision as of 23:58, 12 June 2021

Hover & click on the images for description

Description

Description:
Description needed
Groups:
Config

Syntax

Syntax:
config / name
Parameters:
config: Config
name: String
Return Value:
Config - config entry

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"]