setFormationTask: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "{{Feature|important|This command is not available in {{arma2}}.}}" to "{{Feature|arma2|This command is not available in {{arma2}}.}}")
m (formatting)
Line 1: Line 1:
{{RV|type=command
{{RV|type=command


| arma1
|game1= arma1


|1.00
|version1= 1.00


|gr1= Unit Control
|gr1= Unit Control


| Set the current task of the formation member. {{Feature|arma2|This command is not available in {{arma2}}.}}
|descr= Set the current task of the formation member. {{Feature|arma2|This command is not available in {{arma2}}.}}


| object '''setFormationTask''' task
|s1= unit '''setFormationTask''' task


|p1= object: [[Object]]
|p1= unit: [[Object]]


|p2= task: [[String]]
|p2= task: [[String]]


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


| [[formationTask]]
|x1 = <code>_unit [[setFormationTask]] "MOVE";</code>
 
|seealso= [[formationTask]]
}}
}}



Revision as of 11:03, 7 February 2021

Hover & click on the images for description

Description

Description:
Set the current task of the formation member.
Arma 2
This command is not available in Arma 2.
Groups:
Unit Control

Syntax

Syntax:
unit setFormationTask task
Parameters:
unit: Object
task: String
Return Value:
Nothing

Examples

Example 1:
_unit setFormationTask "MOVE";

Additional Information

See also:
formationTask

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
Posted on 16:57, 2 March 2007 (CET)
Donnervogel
The argument for task can be any String value. This can effectively be used to store a property in String format an retrieve it with formationTask in FSM scripts. By using it outside of FSM scripts you're risking to get it overwritten by other running FSM scripts.