combatMode: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Added SEEALSO)
m (template:command argument fix)
(18 intermediate revisions by 12 users not shown)
Line 6: Line 6:
|1.00|= Game version
|1.00|= Game version


|arg= global |= Arguments in MP
|arg= global |Multiplayer Arguments=
____________________________________________________________________________________________
____________________________________________________________________________________________


| Returns the combat mode of the given unit. See [[setCombatMode]] for more information about combat modes. |= Description
| Returns the combat mode of the given unit. See [[setCombatMode]] for more information about combat modes. |DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[String]] <nowiki>=</nowiki> '''combatMode''' grp|= Syntax
| [[String]] <nowiki>=</nowiki> '''combatMode''' grp|SYNTAX=


|p1= grp: [[Object]] or [[Group]] |= Parameter 1
|p1= grp: [[Object]] or [[Group]] |PARAMETER1=


| [[String]] -   
| [[String]] -   
One of "BLUE", "GREEN", "WHITE, "YELLOW" and "RED" |= Return value
One of "BLUE", "GREEN", "WHITE", "YELLOW" and "RED" or "ERROR" |RETURNVALUE=
____________________________________________________________________________________________
____________________________________________________________________________________________
   
   
|x1= <pre>?((combatMode _grp1)=="BLUE") : _grp1 setCombatMode "GREEN"</pre> |= Example 1
|x1= <code>[[if]] (([[combatMode]] _grp1) == "BLUE") [[then]] {_grp1 [[setCombatMode]] "GREEN"};</code> |EXAMPLE1=
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[ArmA:_AI_Combat_Modes|AI Combat Modes]], [[setCombatMode]] |= See also
| [[Combat Modes]], [[setCombatMode]], [[behaviour]], [[setBehaviour]], [[skill]], [[setSkill]], [[Arma 3 AI Skill]] |SEEALSO=


}}
}}
Line 31: Line 31:
<!-- Note Section BEGIN -->
<!-- Note Section BEGIN -->


<dd class="notedate">Posted on August 3, 2006 - 14:25</dd>
<dd class="notedate">Posted on August 3, 2006 - 14:25
<dt class="note">'''[[User:Hardrock|hardrock]]'''</dt><dd class="note">''Notes from before the conversion:''
<dt class="note">'''[[User:Hardrock|hardrock]]'''<dd class="note">''Notes from before the conversion:''


Use [[setCombatMode]] to set the combat mode. The definitions of the colours are given under that command.
Use [[setCombatMode]] to set the combat mode. The definitions of the colours are given under that command.
</dd>
 
<dd class="notedate"></dd>
<dd class="notedate">
<dt class="note">'''[[User:Ceeeb|Ceeeb]]'''</dt>
<dt class="note">'''[[User:Ceeeb|Ceeeb]]'''
<dd class="note">
<dd class="note">
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.
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.
</dd>
 
<!-- Note Section END -->
<!-- Note Section END -->
</dl>
</dl>
Line 50: Line 50:


[[Category:Scripting Commands|COMBATMODE]]
[[Category:Scripting Commands|COMBATMODE]]
[[Category:Scripting Commands OFP 1.99|COMBATMODE]]
[[Category:Scripting Commands OFP 1.96|COMBATMODE]]
[[Category:Scripting Commands OFP 1.96|COMBATMODE]]
[[Category:Scripting Commands OFP 1.46|COMBATMODE]]
[[Category:Scripting Commands OFP 1.46|COMBATMODE]]
Line 55: Line 56:
[[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 VBS2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]

Revision as of 12:06, 5 August 2019

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 ModessetCombatModebehavioursetBehaviourskillsetSkillArma 3 AI Skill

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