combatMode: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
(ERROR is another return)
Line 17: Line 17:


| [[String]] -   
| [[String]] -   
One of "BLUE", "GREEN", "WHITE", "YELLOW" and "RED" |= Return value
One of "BLUE", "GREEN", "WHITE", "YELLOW" and "RED" or "ERROR" |= Return value
____________________________________________________________________________________________
____________________________________________________________________________________________
   
   

Revision as of 05:15, 4 March 2016

Hover & click on the images for description

Description

Description:
Returns the combat mode of the given unit. See setCombatMode for more information about combat modes.
Groups:
Uncategorised

Syntax

Syntax:
String = combatMode grp
Parameters:
grp: Object or Group
Return Value:
String - One of "BLUE", "GREEN", "WHITE", "YELLOW" and "RED" or "ERROR"

Examples

Example 1:
if ((combatMode _grp1) == "BLUE") then {_grp1 setCombatMode "GREEN"};

Additional Information

See also:
combat mode descriptionAI Combat ModessetCombatModebehavioursetBehaviourskillsetSkill arrayCfgAISkill

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

Posted on August 3, 2006 - 14:25
hardrock
Notes from before the conversion: Use setCombatMode to set the combat mode. The definitions of the colours are given under that command.
Ceeeb
In OFP v1.96, combatMode return value does not change when unit's combat mode is set with radio commands, ie troops under the player's command.

Bottom Section