unassignVehicle: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 8: Line 8:


| Unit is unassigned from the vehicle. If he is currently in, group leader will issue order to disembark.  
| Unit is unassigned from the vehicle. If he is currently in, group leader will issue order to disembark.  
Examples: unassignVehicle [[player]]
Examples: {unassignVehicle _x} [[forEach]] [[crew]] vehiclename
will make the player disembark {unassignVehicle _x} [[forEach]] [[crew]] vehiclename
will make all the occupants of a vehicle disembark |= Description
will make all the occupants of a vehicle disembark |= Description
____________________________________________________________________________________________
____________________________________________________________________________________________

Revision as of 12:47, 16 March 2007

Hover & click on the images for description

Description

Description:
Unit is unassigned from the vehicle. If he is currently in, group leader will issue order to disembark. Examples: {unassignVehicle _x} forEach crew vehiclename will make all the occupants of a vehicle disembark
Groups:
Uncategorised

Syntax

Syntax:
unassignVehicle unit
Parameters:
unit: Object
Return Value:
Nothing

Examples

Example 1:
unassignVehicle player

Additional Information

See also:
assignAsCargoassignAsCommanderassignAsDriverassignAsGunner

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 August 4, 2006 - 12:05
hardrock
Notes from before the conversion: Even though: {unassignVehicle _x} forEach crew vehiclename will make all the occupants of a vehicle disembark, if they are the original crew of the vehicle then they will just get back in again. To prevent this happening also use allowGetIn as in the example below: {unassignVehicle _x} forEach crew vehiclename; crew vehiclename allowGetIn false

Bottom Section