moveOut: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (template:command argument fix)
m (Some wiki formatting)
 
(88 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{RV|type=command
____________________________________________________________________________________________


| arma2 |= Game name
|game1= arma2
|version1= 1.00


|1.00|= Game version
|game2= arma2oa
|eff= global|= Effects in MP
|version2= 1.50
|arg= global|= Arguments in MP
____________________________________________________________________________________________


| Moves the soldier out of vehicle, immediately, without animation. 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. This command will also fail to move AI out of a vehicle if the vehicle is [[locked]] but it will work for [[player]]|DESCRIPTION=
|game3= tkoh
____________________________________________________________________________________________
|version3= 1.00


| '''moveOut''' soldier |SYNTAX=
|game4= arma3
|version4= 0.50
|eff= global
|arg= global


|p1= soldier: [[Object]]  |PARAMETER1=  
|gr1= Unit Control


|p2= |PARAMETER2=
|descr= Moves the soldier out of the vehicle.
<br><br>
Notes:
* Works for both AI and player entities
* AI unit gets back in - unless is under player command or combined with other sqf commands ([[orderGetIn]] false, [[allowGetIn]] false or [[leaveVehicle]])
* Respects the vehicle's lock state (same as [[Arma 3: Actions#Eject|action "Eject"]]) - unlike [[doGetOut]], [[commandGetOut]]. It will work for [[player]] entities regardless though
* Still executes when the vehicle is moving/flying (same as [[Arma 3: Actions#Eject|action "Eject"]]) - unlike [[doGetOut]], [[commandGetOut]]
* Without vehicle's position's get out animation - unlike [[Arma 3: Actions#Eject|action eject]], [[doGetOut]], [[commandGetOut]]
* Immediately - unlike [[Arma 3: Actions#Eject|action eject]], [[doGetOut]], [[commandGetOut]]
* Works also on dead units (same as [[Arma 3: Actions#Eject|action "Eject"]] (but one after another)) - unlike [[doGetOut]], [[commandGetOut]]
* Does not work for UAV crew
* Does not work for [[remoteControl]]led units
* Works on [[setUnconscious|unconscious]] (same as [[Arma 3: Actions#Eject|action "Eject"]] (but one after another)) - unlike [[doGetOut]], [[commandGetOut]] (unless AI under player command)


|p3= |PARAMETER3=  
|s1= [[moveOut]] soldier


| [[Nothing]] |RETURNVALUE=
|p1= soldier: [[Object]] - unit (only a living unit before {{GVI|arma3|2.06}})


|r1= [[Nothing]]


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


|s2since= arma3 2.06


|x2= Move out player just before he dies:<code>[[player]] [[addEventHandler]] [
|p21= soldier: [[Object]] - unit
 
|p22= vehicle: [[Object]] - vehicle could be [[objNull]], in this case the command is identical to the main syntax.
 
|r2= [[Nothing]]
 
|x1= <sqf>{ if (lifeState _x == "UNCONSCIOUS") then { moveOut _x } } forEach crew cursorTarget;</sqf>
 
|x2= Move out player just before he dies:
<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>|EXAMPLE2=
];
____________________________________________________________________________________________
</sqf>


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


| |MPBEHAVIOUR=  
{{Note
____________________________________________________________________________________________
|user= .kju
|timestamp= 20200807085300
|text= This seems no longer true in {{arma3}}:<br>
''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.''
}}
}}
<h3 style='display:none'>Notes</h3>
<dl class='command_description'>
</dl>
<h3 style='display:none'>Bottom Section</h3>
[[Category:ArmA 2: New Scripting Commands List|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]

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.