combatMode: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Update link to Combat Modes list)
m (Bot: Replacing category Scripting Commands Arma 3 with Arma 3: Scripting Commands)
Line 45: Line 45:


<h3 style="display:none">Bottom Section</h3>
<h3 style="display:none">Bottom Section</h3>


[[Category:Scripting Commands|COMBATMODE]]
[[Category:Scripting Commands|COMBATMODE]]
Line 54: Line 51:
[[Category:Scripting Commands OFP 1.46|COMBATMODE]]
[[Category:Scripting Commands OFP 1.46|COMBATMODE]]
[[Category:Scripting Commands ArmA|COMBATMODE]]
[[Category:Scripting Commands ArmA|COMBATMODE]]
[[Category:Command_Group:_Object_Information|{{uc:{{PAGENAME}}}}]]
[[Category:Command Group: Object Information|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Arma 3: Scripting Commands]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Take On Helicopters|{{uc:{{PAGENAME}}}}]]

Revision as of 18:01, 3 December 2018

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 ModessetCombatModebehavioursetBehaviourskillsetSkillCfgAISkill

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