combatBehaviour: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (command group)
m (Some wiki formatting)
Line 11: Line 11:


|descr= Returns combat behaviour of unit or group. To set unit or group behaviour see [[setCombatBehaviour]]. The behaviour is one of:
|descr= Returns combat behaviour of unit or group. To set unit or group behaviour see [[setCombatBehaviour]]. The behaviour is one of:
{{Columns|2|
* "CARELESS"
* "CARELESS"
* "SAFE"
* "SAFE"
Line 17: Line 18:
* "STEALTH"
* "STEALTH"
* "ERROR" - when not available
* "ERROR" - when not available
|shrink= y
}}


|s1= [[combatBehaviour]] unit
|s1= [[combatBehaviour]] unit
Line 30: Line 33:
|r2= [[String]] - group behaviour, see description   
|r2= [[String]] - group behaviour, see description   


|x1= <code>unit1 [[setCombatBehaviour]] "CARELESS";
|x1= <sqf>
[[combatBehaviour]] unit1; //"CARELESS"</code>
unit1 setCombatBehaviour "CARELESS";
combatBehaviour unit1; // "CARELESS"
</sqf>


|x2= <code>group unit1 [[setCombatBehaviour]] "SAFE";
|x2= <sqf>
[[combatBehaviour]] group unit1; //"SAFE"</code>
group unit1 setCombatBehaviour "SAFE";
combatBehaviour group unit1; // "SAFE"
</sqf>


|seealso= [[setCombatBehaviour]] [[setBehaviour]] [[setBehaviourStrong]] [[setWaypointBehaviour]] [[combatMode]] [[setCombatMode]] [[skill]] [[setSkill]]
|seealso= [[setCombatBehaviour]] [[setBehaviour]] [[setBehaviourStrong]] [[setWaypointBehaviour]] [[combatMode]] [[setCombatMode]] [[skill]] [[setSkill]]
}}
}}

Revision as of 18:20, 5 May 2022

Hover & click on the images for description

Description

Description:
Returns combat behaviour of unit or group. To set unit or group behaviour see setCombatBehaviour. The behaviour is one of:
  • "CARELESS"
  • "SAFE"
  • "AWARE"
  • "COMBAT"
  • "STEALTH"
  • "ERROR" - when not available
Groups:
AI BehaviourGroups

Syntax

Syntax:
combatBehaviour unit
Parameters:
unit: Object - AI unit
Return Value:
String - unit behaviour, see description

Alternative Syntax

Syntax:
combatBehaviour group
Parameters:
group: Group - AI group
Return Value:
String - group behaviour, see description

Examples

Example 1:
unit1 setCombatBehaviour "CARELESS"; combatBehaviour unit1; // "CARELESS"
Example 2:
group unit1 setCombatBehaviour "SAFE"; combatBehaviour group unit1; // "SAFE"

Additional Information

See also:
setCombatBehaviour setBehaviour setBehaviourStrong setWaypointBehaviour combatMode setCombatMode skill setSkill

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