diag activeSQFScripts: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
No edit summary |
||
Line 14: | Line 14: | ||
| [[Array]] |= RETURNVALUE | | [script1, script2, script2,...]: [[Array]] <br/><br/> | ||
Each script entry is an array itself with the following entries:<br/> | |||
[function- or filename, filename, unknown boolean, scripts linecount]|= RETURNVALUE | |||
|x1= <code>[[systemChat]] [[str]] diag_activeSQFScripts;</code>|= Example 1 | |x1= <code>{[[systemChat]] [[str]]_x} foreach diag_activeSQFScripts;</code>|= Example 1 | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ |
Revision as of 17:50, 5 May 2015
Description
- Description:
- Returns an array containing all currently active SQF scripts/functions.
- Groups:
- Uncategorised
Syntax
- Syntax:
- diag_activeSQFScripts
- Return Value:
- [script1, script2, script2,...]: Array
Each script entry is an array itself with the following entries:
[function- or filename, filename, unknown boolean, scripts linecount]
Examples
- Example 1:
{systemChat str_x} foreach diag_activeSQFScripts;
Additional Information
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
- Posted on May 5, 2015 - 16:44 (UTC)
- Will
- return array with arrays... example -> [["life_fnc_test","",true,1]] ... first is the name of the function but the rest?!?