activateAddons: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " |r1=[[" to " |r1= [[")
m (Some wiki formatting)
Line 21: Line 21:
|gr1= Mods and Addons
|gr1= Mods and Addons


|descr= Activates the listed addons. The list of active addons is initialized during this function.
|descr= Activates the listed addons.


|s1= [[activateAddons]] [addon1, ...]
|s1= [[activateAddons]] addonsList


|p1= [addon1, ...]: [[Array]]
|p1= addonsList: [[Array]] of [[String]]s


|r1= [[Nothing]]
|r1= [[Nothing]]
Line 34: Line 34:
}}
}}


<dl class="command_description">
{{Note
|user= WGL.Q
|timestamp= 20090121123700
|text= Be aware that addon's string is the {{hl|CfgPatches}} class of the desired addon to preload.
}}


<dt></dt>
{{Note
<dd class="notedate">Posted on Jan 21, 2009 - 12:37</dd>
|user= UNN
<dt class="note">[[User:WGL.Q|WGL.Q]]</dt>
|timestamp= 20090510111700
<dd class="note">
|text= This command will activate addons that are referenced via scripts but not included in a missions required addons section. If executed from a configs init event with the [[call]] command, it will effectively override a missions required addons, preventing them from being activated (Appears to only happen in multi player).  
Be aware that "Addon1" is the cfgPatches class of the desired addon to preload.
To activate the passed addons along with those defined in the mission.sqm, execute the command from a configs init event using [[spawn]] or [[execVM]].
<dd class="notedate">Posted on May 10, 2009 - 11:17</dd>
}}
<dt class="note">[[User:UNN|UNN]]</dt>
<dd class="note">
This command will activate addons that are referenced via scripts but not included in a missions required addons section. If executed from a configs init event with the [[call]] command, it will effectively override a missions required addons, preventing them from being activated (Appears to only happen in multi player).  
To activate the passed addons along with those defined in the mission.sqm, execute the command from a configs init event using [[spawn]] or [[execVM]]. [[User:UNN|UNN]]
</dl>

Revision as of 14:58, 24 November 2021

Hover & click on the images for description

Description

Description:
Activates the listed addons.
Groups:
Mods and Addons

Syntax

Syntax:
activateAddons addonsList
Parameters:
addonsList: Array of Strings
Return Value:
Nothing

Examples

Example 1:
activateAddons ["BISOFP"];

Additional Information

See also:
unitAddonsactivatedAddons

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
WGL.Q - c
Posted on Jan 21, 2009 - 12:37 (UTC)
Be aware that addon's string is the CfgPatches class of the desired addon to preload.
UNN - c
Posted on May 10, 2009 - 11:17 (UTC)
This command will activate addons that are referenced via scripts but not included in a missions required addons section. If executed from a configs init event with the call command, it will effectively override a missions required addons, preventing them from being activated (Appears to only happen in multi player). To activate the passed addons along with those defined in the mission.sqm, execute the command from a configs init event using spawn or execVM.