assignAsCargo: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (changed global to local variable to make clear the variable)
m (changed global to local variable to make clear the variable)
Line 18: Line 18:
|p1= [[Object#Person|Person]]: [[Object]] |= Parameter 1
|p1= [[Object#Person|Person]]: [[Object]] |= Parameter 1


|p2= Vehicle: [[Object]] |= Parameter 2
|p2= [[Object#Vehicle|Vehicle]]: [[Object]] |= Parameter 2


| [[Nothing]] |= Return value
| [[Nothing]] |= Return value
____________________________________________________________________________________________
____________________________________________________________________________________________
   
   
|x1= <pre>_soldier1 assignAsCargo truck
|x1= <pre>_soldier1 assignAsCargo _truck
[soldier1] orderGetIn true</pre> |= Example 1
[_soldier1] orderGetIn true</pre> |= Example 1
____________________________________________________________________________________________
____________________________________________________________________________________________



Revision as of 06:48, 27 August 2007

Hover & click on the images for description

Description

Description:
Assign a unit as cargo of a vehicle. Used together with orderGetIn to order subordinate units to get in as cargo into a specific vehicle. Before usage of this command a subordinate unit hasn't got the option to get into the cargo space of the vehicle.
Groups:
Uncategorised

Syntax

Syntax:
Person assignAsCargo Vehicle
Parameters:
Person: Object
Vehicle: Object
Return Value:
Nothing

Examples

Example 1:
_soldier1 assignAsCargo _truck
[_soldier1] orderGetIn true

Additional Information

See also:
assignAsDriverassignAsGunnerassignAsCommandermoveInCargomoveInCommandermoveInDrivermoveInGunnermoveInTurret

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 July 14, 2007 - 21:06
Red15
Please note that it this command only works if all units involved in this command must belong to the same group else it will not work.

Bottom Section