allAddonsInfo: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(Created page with "{{Command|Comments= ____________________________________________________________________________________________ | arma3dev |Game name= |1.99 |Game version= ________________...")
 
m (2.00 update)
(5 intermediate revisions by 3 users not shown)
Line 2: Line 2:
____________________________________________________________________________________________
____________________________________________________________________________________________


| arma3dev |Game name=
| arma3 |Game name=


|1.99 |Game version=
|2.00 |Game version=
 
|gr1= Mods and Addons |GROUP1=
____________________________________________________________________________________________
____________________________________________________________________________________________


|Returns the list of all loaded addons in format [prefix, version, isPatched]|DESCRIPTION=
|Returns the list of all loaded addons.|DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


|s1= [[allAddonsInfo]] |SYNTAX=
|s1= [[allAddonsInfo]] |SYNTAX=


|r1= [[Array]] of [[Array]]s -  |RETURNVALUE=
|r1= [[Array]] of [[Array]]s in format [prefix, version, isPatched], where:
* prefix: [[String]] - addon prefix
* version: [[String]] - addon revision version
* isPatched: [[Boolean]] - [[true]] if patching is enabled and this addon is being patched
  |RETURNVALUE=


____________________________________________________________________________________________
____________________________________________________________________________________________


|x1= <code>[[allAddonsInfo]]</code>|EXAMPLE1=  
|x1= <code>[[allAddonsInfo]]
{{codecomment|/*
[
["bin\","146398",false],
["core\","129618",false],
["Languagecore_F\","148726",false],
["a3\air_f_enoch\","145904",false],
["a3\anims_f_enoch\","146917",false],
["a3\armor_f_enoch\","145904",false],
...
]
<nowiki>*</nowiki>/}}</code>|EXAMPLE1=  
____________________________________________________________________________________________
____________________________________________________________________________________________


Line 33: Line 50:
<h3 style="display:none">Bottom Section</h3>
<h3 style="display:none">Bottom Section</h3>
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group: Mods_and_Addons|{{uc:{{PAGENAME}}}}]]

Revision as of 14:32, 14 October 2020

Hover & click on the images for description

Description

Description:
Returns the list of all loaded addons.
Groups:
Mods and Addons

Syntax

Syntax:
allAddonsInfo
Return Value:
Array of Arrays in format [prefix, version, isPatched], where:
  • prefix: String - addon prefix
  • version: String - addon revision version
  • isPatched: Boolean - true if patching is enabled and this addon is being patched

Examples

Example 1:
allAddonsInfo /* [ ["bin\","146398",false], ["core\","129618",false], ["Languagecore_F\","148726",false], ["a3\air_f_enoch\","145904",false], ["a3\anims_f_enoch\","146917",false], ["a3\armor_f_enoch\","145904",false], ... ] */

Additional Information

See also:
addonFiles

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