missionConfigFile: Difference between revisions
Jump to navigation
Jump to search
Killzone Kid (talk | contribs) (see also) |
Killzone Kid (talk | contribs) (format, example) |
||
Line 15: | Line 15: | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| | |'''missionConfigFile''' |= Syntax | ||
| [[Config]] |= Return value | | [[Config]] |= Return value | ||
Line 42: | Line 42: | ||
|x3= To get file path with [[description.ext]] to play sound via [[playSound3D]]: | |x3= To get file path with [[description.ext]] to play sound via [[playSound3D]]: | ||
<code>_filePath = [([[str]] [[missionConfigFile]]), 0, -15] [[call]] [[BIS_fnc_trimString]];</code> | = Example 3 | <code>_filePath = [([[str]] [[missionConfigFile]]), 0, -15] [[call]] [[BIS_fnc_trimString]];</code> | = Example 3 | ||
|x4= Obtaining mission root using A3 substring functionality | |||
<code>MISSION_ROOT = [[str]] [[missionConfigFile]] [[select]] [0, [[count]] [[str]] [[missionConfigFile]] - 15];</code> | |||
|= Example 4 | |||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
Revision as of 17:27, 17 February 2015
Description
- Description:
- Return root of mission description.ext entries hierarchy.
- Groups:
- Uncategorised
Syntax
- Syntax:
- missionConfigFile
- Return Value:
- Config
Examples
- Example 1:
for "_i" from (0) to ((count paramsArray) - 1) do { missionNamespace setVariable [configName ((missionConfigFile/"Params") select _i), paramsArray select _i]; };
- Example 2:
- To define custom values in description.ext:
class myMissionConfig { class mySetup { myNumber = 3; myArray[] = { 1, 2, 3 }; myText = "LOL"; }; };
To read defined custom values from a script:_myNumber = getNumber (missionConfigFile >> "myMissionConfig" >> "mySetup" >> "myNumber"); _myArray = getArray (missionConfigFile >> "myMissionConfig" >> "mySetup" >> "myArray"); _myText = getText (missionConfigFile >> "myMissionConfig" >> "mySetup" >> "myText");
- Example 3:
- To get file path with description.ext to play sound via playSound3D:
_filePath = [(str missionConfigFile), 0, -15] call BIS_fnc_trimString;
- Example 4:
- Obtaining mission root using A3 substring functionality
MISSION_ROOT = str missionConfigFile select [0, count str missionConfigFile - 15];
Additional Information
- See also:
- configClassesconfigPropertiesconfigFilecampaignConfigFileconfig/nameconfig >> nameconfigNamecountgetArraygetTextgetNumberinheritsFromisArrayisClassisNumberisTextselect
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
Bottom Section
Categories:
- Scripting Commands
- Scripting Commands ArmA
- Command Group: System Commands
- Command Group: Mission Information
- Introduced with Arma version 1.00
- Arma: New Scripting Commands
- Arma: Scripting Commands
- Command Group: Uncategorised
- Scripting Commands ArmA2
- Scripting Commands Arma 3
- Scripting Commands Take On Helicopters