moveOut: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(add. classification)
(Added example, SEEALSO and comment about dead bodies)
Line 21: Line 21:




|x1= <code>(example)</code>|= EXAMPLE1  
|x1= <pre>if ((lifeState _x) == "UNCONSCIOUS") then {moveOut _x;};} forEach (crew cursorTarget);</pre>|= EXAMPLE1  


____________________________________________________________________________________________
____________________________________________________________________________________________


| |= SEEALSO  
| [[action]], [[setPos]], [[setPosATL]], [[setPosASL]] |= SEEALSO  


|  |= MPBEHAVIOUR  
|  |= MPBEHAVIOUR  
Line 34: Line 34:
<dl class='command_description'>
<dl class='command_description'>
<!-- Note Section BEGIN -->
<!-- Note Section BEGIN -->
<dd class="notedate">Posted on September 12, 2010</dd>
<dt class="note">'''[[User:kju|kju]]'''</dt>
<dd class="note">
Seems to work only for unconscious - NOT for dead bodies. setPos/ATL/ASL seems to the only working for dead bodies.
</dd>


<!-- Note Section END -->
<!-- Note Section END -->

Revision as of 09:47, 12 September 2010

Hover & click on the images for description

Description

Description:
Moves the soldier out of vehicle. (Immediately,without animation).
Groups:
Uncategorised

Syntax

Syntax:
moveOut soldier
Parameters:
soldier: Object -
Return Value:
Nothing

Examples

Example 1:
if ((lifeState _x) == "UNCONSCIOUS") then {moveOut _x;};} forEach (crew cursorTarget);

Additional Information

See also:
actionsetPossetPosATLsetPosASL

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 September 12, 2010
kju
Seems to work only for unconscious - NOT for dead bodies. setPos/ATL/ASL seems to the only working for dead bodies.

Bottom Section