isClass: Difference between revisions
Jump to navigation
Jump to search
m (Text replace - "</dt>" to "") |
m (Text replace - "</dd>" to "") |
||
Line 24: | Line 24: | ||
<dl class="command_description"> | <dl class="command_description"> | ||
<!-- Note Section BEGIN --> | <!-- Note Section BEGIN --> | ||
<dd class="notedate">Posted on March 2, 2007 - 01:17 | <dd class="notedate">Posted on March 2, 2007 - 01:17 | ||
<dt class="note">'''[[User:Kronzky|Kronzky]]'''<dd class="note">This command allows you to check for the presence of an addon. | <dt class="note">'''[[User:Kronzky|Kronzky]]'''<dd class="note">This command allows you to check for the presence of an addon. | ||
isClass (configFile >> "cfgVehicles" >> "MyCustomCar") | isClass (configFile >> "cfgVehicles" >> "MyCustomCar") | ||
Line 30: | Line 30: | ||
''You will have to know under which class the addon is categorized (in this case "cfgVehicles") to be able to use the right config path.'' | ''You will have to know under which class the addon is categorized (in this case "cfgVehicles") to be able to use the right config path.'' | ||
<!-- Note Section END --> | <!-- Note Section END --> | ||
</dl> | </dl> |
Revision as of 13:35, 21 October 2011
Description
- Description:
- Check if config entry represents config class.
- Groups:
- Uncategorised
Syntax
Examples
- Example 1:
_ok = isClass (configFile >> "CfgVehicles")
Result is true
Additional Information
- See also:
- configFileconfig/nameconfigNamecountgetArraygetTextgetNumberinheritsFromisArrayisNumberisTextselect
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
Notes
- Posted on March 2, 2007 - 01:17
- Kronzky
- This command allows you to check for the presence of an addon. isClass (configFile >> "cfgVehicles" >> "MyCustomCar") will return true if the addon "MyCustomCar" is installed, and false if it is not installed. You will have to know under which class the addon is categorized (in this case "cfgVehicles") to be able to use the right config path.