moveOut: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "<code>([^ ]*)\[\[([a-zA-Z][a-zA-Z0-9_]+)\]\]([^ ]*)<\/code>" to "<code>$1$2$3</code>")
m (Some wiki formatting)
 
(41 intermediate revisions by 2 users not shown)
Line 47: Line 47:
|r2= [[Nothing]]
|r2= [[Nothing]]


|x1= <code>{if ([[lifeState]] _x == "UNCONSCIOUS") [[then]] { [[moveOut]] _x } } [[forEach]] [[crew]] [[cursorTarget]];</code>
|x1= <sqf>{ if (lifeState _x == "UNCONSCIOUS") then { moveOut _x } } forEach crew cursorTarget;</sqf>


|x2= Move out player just before he dies:
|x2= Move out player just before he dies:
<code>[[player]] [[addEventHandler]] [
<sqf>
player addEventHandler [
"HandleDamage",  
"HandleDamage",  
[[format]] [
format [
'[[if]] ([[switch]] (_this [[select]] 1) [[do]] {
'if (switch (_this select 1) do {
[[case]] "": { _this [[select]] 2 >= 1 };
case "": { _this select 2 >= 1 };
[[case]] "head": {_this [[select]] 2 >= %1};
case "head": {_this select 2 >= %1};
[[case]] "body": {_this [[select]] 2 >= %2};
case "body": {_this select 2 >= %2};
[[default]] {[[false]]};
default {false};
}) [[then]] {[[moveOut]] [[player]]}',
}) then {moveOut player}',
[[getNumber]] ([[configFile]] >> "CfgFirstAid" >> "CriticalHeadHit"),
getNumber (configFile >> "CfgFirstAid" >> "CriticalHeadHit"),
[[getNumber]] ([[configFile]] >> "CfgFirstAid" >> "CriticalBodyHit")
getNumber (configFile >> "CfgFirstAid" >> "CriticalBodyHit")
]
]
];</code>
];
</sqf>


|seealso= [[Arma 3: Actions#Eject|"Eject" action]], [[doGetOut]], [[commandGetOut]], [[leaveVehicle]], [[moveInDriver]], [[moveInGunner]], [[moveInCommander]], [[moveInTurret]], [[moveInCargo]], [[isTurnedOut]]
|seealso= [[Arma 3: Actions#Eject|"Eject" action]] [[doGetOut]] [[commandGetOut]] [[leaveVehicle]] [[moveInDriver]] [[moveInGunner]] [[moveInCommander]] [[moveInTurret]] [[moveInCargo]] [[isTurnedOut]]
}}
}}


<dl class="command_description">
{{Note
 
|user= .kju
<dt></dt>
|timestamp= 20200807085300
<dd class="notedate">Posted on August 07, 2020 - 08:53 (UTC)</dd>
|text= This seems no longer true in {{arma3}}:<br>
<dt class="note">[[User:.kju|.kju]]</dt>
''Does not work on dead [[crew]] - Use [[setPos]] family of commands to move dead units out soon after they became dead. After awhile dead unit's group becomes [[grpNull]] and it cannot be moved out at all.''  
<dd class="note">
}}
This seems no longer true in Arma 3: ''Does not work on dead [[crew]] - Use [[setPos]] family of commands to move dead units out soon after they became dead. After awhile dead unit's group becomes [[grpNull]] and it cannot be moved out at all.''  
</dd>
 
</dl>

Latest revision as of 00:02, 17 November 2023

Hover & click on the images for description

Description

Description:
Moves the soldier out of the vehicle.

Notes:
Groups:
Unit Control

Syntax

Syntax:
moveOut soldier
Parameters:
soldier: Object - unit (only a living unit before Arma 3 logo black.png2.06)
Return Value:
Nothing

Alternative Syntax

Syntax:
soldier moveOut vehicle
Parameters:
soldier: Object - unit
vehicle: Object - vehicle could be objNull, in this case the command is identical to the main syntax.
Return Value:
Nothing

Examples

Example 1:
{ if (lifeState _x == "UNCONSCIOUS") then { moveOut _x } } forEach crew cursorTarget;
Example 2:
Move out player just before he dies:
player addEventHandler [ "HandleDamage", format [ 'if (switch (_this select 1) do { case "": { _this select 2 >= 1 }; case "head": {_this select 2 >= %1}; case "body": {_this select 2 >= %2}; default {false}; }) then {moveOut player}', getNumber (configFile >> "CfgFirstAid" >> "CriticalHeadHit"), getNumber (configFile >> "CfgFirstAid" >> "CriticalBodyHit") ] ];

Additional Information

See also:
"Eject" action doGetOut commandGetOut leaveVehicle moveInDriver moveInGunner moveInCommander moveInTurret moveInCargo isTurnedOut

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
.kju - c
Posted on Aug 07, 2020 - 08:53 (UTC)
This seems no longer true in Arma 3:
Does not work on dead crew - Use setPos family of commands to move dead units out soon after they became dead. After awhile dead unit's group becomes grpNull and it cannot be moved out at all.