enableAIFeature: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\|game([0-9]) ?= (.+) \|version([0-9]) ?= (.+) " to "|game$1= $2 |version$3= $4 ")
m (Text replacement - "(\|[pr][0-9]+ *= *[^- ]*) *- *U([a-z ])" to "$1 - u$2")
 
(17 intermediate revisions by 3 users not shown)
Line 13: Line 13:
|version4= 0.50
|version4= 0.50


|gr1= System
|gr1= AI Behaviour
 
|gr2= Unit Control


|descr= Enables/disables given AI feature.  
|descr= Enables/disables given AI feature.  


|s1= feature '''enableAIFeature''' enable
|s1= feature [[enableAIFeature]]  enable


|p1= feature: [[String]] - Can be:
|p1= feature: [[String]] - can be:
* <tt>"AwareFormationSoft"</tt>
* {{hl|"AwareFormationSoft"}}
* <tt>"CombatFormationSoft"</tt>
* {{hl|"CombatFormationSoft"}}


|p2= enable: [[Boolean]] - [[true|True]] to enable, [[false]] to disable
|p2= enable: [[Boolean]] - [[true]] to enable, [[false]] to disable


|r1= [[Nothing]]
|r1= [[Nothing]]


|s2= unit '''enableAIFeature''' [feature, enable] {{Since|arma3|1.96|y}}
|s2= unit [[enableAIFeature]]  [feature, enable]
 
|s2since= arma3 1.96


|p21= unit: [[Object]] - Unit to test AI feature for
|p21= unit: [[Object]] - unit to test AI feature for


|p22= feature: [[String]] - See [[disableAI]] / [[enableAI]] for possible values
|p22= feature: [[String]] - see [[disableAI]] / [[enableAI]] for possible values


|p23= enabled: [[Boolean]] - [[true|True]] to enable, [[false]] to disable
|p23= enable: [[Boolean]] - [[true]] to enable, [[false]] to disable


|r2= [[Nothing]]
|r2= [[Nothing]]


|x1 = <code>"AwareFormationSoft" [[enableAIFeature]] [[true]];</code>
|x1= <sqf>"AwareFormationSoft" enableAIFeature true;</sqf>


|x2 = <code>bob [[enableAIFeature]] ["AUTOTARGET", [[false]]];</code>
|x2= <sqf>bob enableAIFeature ["AUTOTARGET", false];</sqf>


|seealso= [[checkAIFeature]], [[enableAI]], [[disableAI]], [[disableRemoteSensors]], [[vehicleMoveInfo]]
|seealso= [[checkAIFeature]] [[enableAI]] [[disableAI]] [[disableRemoteSensors]] [[vehicleMoveInfo]]
}}
}}

Latest revision as of 16:52, 8 November 2023

Hover & click on the images for description

Description

Description:
Enables/disables given AI feature.
Groups:
AI Behaviour

Syntax

Syntax:
feature enableAIFeature enable
Parameters:
feature: String - can be:
  • "AwareFormationSoft"
  • "CombatFormationSoft"
enable: Boolean - true to enable, false to disable
Return Value:
Nothing

Alternative Syntax

Syntax:
unit enableAIFeature [feature, enable]
Parameters:
unit: Object - unit to test AI feature for
feature: String - see disableAI / enableAI for possible values
enable: Boolean - true to enable, false to disable
Return Value:
Nothing

Examples

Example 1:
"AwareFormationSoft" enableAIFeature true;
Example 2:
bob enableAIFeature ["AUTOTARGET", false];

Additional Information

See also:
checkAIFeature enableAI disableAI disableRemoteSensors vehicleMoveInfo

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