setUnitPosWeak: Difference between revisions
Jump to navigation
Jump to search
m (Text replacement - "<h3 style="display:none">Bottom Section</h3> " to "") |
Lou Montana (talk | contribs) m (Text replacement - " *\| *([Cc]omments|COMMENTS|Game|[Gg]ame [Nn]ame( +[0-9])?|Game [Vv]ersion( +[0-9])?|Game Version \(number surrounded by NO SPACES\)|Arguments in MP|MP[Aa]rg|Multiplayer Arguments( \("local" or "global"\))?|Effects|Execution|Effects...) |
||
Line 1: | Line 1: | ||
{{Command | {{Command | ||
| arma1 | | arma1 | ||
|1.04 | |1.04 | ||
|eff= global | |eff= global | ||
|arg= local | |arg= local | ||
|gr1= Unit Control | |gr1= Unit Control | ||
| Set unit position rules. Mode may be one of: | | Set unit position rules. Mode may be one of: | ||
Line 16: | Line 16: | ||
* '''"AUTO"''' - person chooses mode according to circumstances. | * '''"AUTO"''' - person chooses mode according to circumstances. | ||
| | | unit '''setUnitPosWeak''' mode | ||
| | |p1= unit: [[Object]] | ||
| [[Nothing]] | |p2= mode: [[String]] - as above | ||
| [[Nothing]] | |||
|x1= <code>_soldier [[disableAI]] "FSM"; | |x1= <code>_soldier [[disableAI]] "FSM"; | ||
_soldier [[setUnitPosWeak]] "DOWN";</code> | _soldier [[setUnitPosWeak]] "DOWN";</code> | ||
| [[FSM]], [[doFSM]], [[setUnitPos]], [[unitPos]] | | [[FSM]], [[doFSM]], [[setUnitPos]], [[unitPos]] | ||
}} | }} |
Revision as of 11:10, 18 January 2021
Description
- Description:
- Set unit position rules. Mode may be one of:
- "DOWN" - person goes prone and stays prone.
- "UP" - person stands and stays standing.
- "Middle" - Kneel Position. ArmA version 1.04
- "AUTO" - person chooses mode according to circumstances.
- Groups:
- Unit Control
Syntax
- Syntax:
- unit setUnitPosWeak mode
- Parameters:
- unit: Object
- mode: String - as above
- Return Value:
- Nothing
Examples
- Example 1:
_soldier disableAI "FSM"; _soldier setUnitPosWeak "DOWN";
Additional Information
- See also:
- FSMdoFSMsetUnitPosunitPos
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
- Unknown
- This command is the lowest level of priority for setting unit position and to be used in scripted
FSM's.
The current priorities are:- 1. Unit pos commanded (from the commanding menu, higher priority).
- 2. Unit pos scripted (from setUnitPos scripting command, medium priority).
- 3. Unit pos FSM / setUnitPosWeak (used in the formation FSM, lowest priority).
Command most likely only works if run before join into group after createUnit array.