From Bohemia Interactive Community
Hover & click on the images for description
Description
- Description:
- Returns an array of config entries which meet criteria in condition code. Command iterates through available classes and config properties for given config entry.
Current looked at config is stored in _x variable (similar to alternative count command implementation).
Condition has to return true in order for the looked at property to be added to the resulting array. This command is a bit slower than configClasses but allows to access inherited entries.
- Groups:
- Config
Syntax
- Syntax:
- configProperties [config, condition, inherit]
- Parameters:
- config: Config - config entry to search
- condition: String - (Optional, default "true") expression, which if returns true, adds current property to result
⚠
- The condition code passed to configProperties should only be used for simple filter expressions and nothing more.
- Since
2.02 the following conditions are optimised for performance:
- "true" (omitted condition)
- "isClass _x"
- "isClass _x && (...)"
- inherit: Boolean - (Optional, default true) include inherited properties
- Return Value:
- Array - array of Configs
Examples
- Example 1:
- Example 2:
- Example 3:
- Get all hitpoints of a truck:
Additional Information
- See also:
- Config configFile missionConfigFile configClasses configHierarchy
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