canVehicleCargo: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
m (format)
Line 19: Line 19:


|x1= Blackfish with no vehicle cargo loaded
|x1= Blackfish with no vehicle cargo loaded
<code>_result = blackfish canVehicleCargo offroad; //[true, true]
<code>_result = blackfish [[canVehicleCargo]] offroad; //[true, true]
</code> |= Example 1
</code> |= Example 1
____________________________________________________________________________________________
____________________________________________________________________________________________


|x2= Blackfish with one vehicle cargo called offroad already loaded
|x2= Blackfish with one vehicle cargo called offroad already loaded
<code>_result = blackfish canVehicleCargo offroad; //[false, false]
<code>_result = blackfish [[canVehicleCargo]] offroad; //[false, false]
</code>
</code>
Even if the Blackfish was empty offroad can't be loaded because it's already in a cargo space |= Example 2
Even if the Blackfish was empty offroad can't be loaded because it's already in a cargo space |= Example 2
Line 30: Line 30:


|x3= Blackfish with one vehicle cargo called offroad already loaded
|x3= Blackfish with one vehicle cargo called offroad already loaded
<code>_result = blackfish canVehicleCargo offroad2; //[false, true]
<code>_result = blackfish [[canVehicleCargo]] offroad2; //[false, true]
</code>
</code>
offroad2 can't be loaded because there isn't enough space in the Blackfish, but if there was space offroad2 could be loaded into the Blackfish |= Example 3
offroad2 can't be loaded because there isn't enough space in the Blackfish, but if there was space offroad2 could be loaded into the Blackfish |= Example 3

Revision as of 05:08, 20 September 2016

Hover & click on the images for description

Description

Description:
Returns bool array if it is possible to load cargo inside vehicle and if possible to load cargo into empty vehicle
Multiplayer:
-
Groups:
Uncategorised

Syntax

Syntax:
vehicle canVehicleCargo cargo
Parameters:
vehicle: Object
cargo: Object
Return Value:
Array - [Possible to load cargo inside vehicle, possible to load cargo into empty vehicle]

Examples

Example 1:
Blackfish with no vehicle cargo loaded _result = blackfish canVehicleCargo offroad; //[true, true]
Example 2:
Blackfish with one vehicle cargo called offroad already loaded _result = blackfish canVehicleCargo offroad; //[false, false] Even if the Blackfish was empty offroad can't be loaded because it's already in a cargo space
Example 3:
Blackfish with one vehicle cargo called offroad already loaded _result = blackfish canVehicleCargo offroad2; //[false, true] offroad2 can't be loaded because there isn't enough space in the Blackfish, but if there was space offroad2 could be loaded into the Blackfish

Additional Information

See also:
Vehicle in Vehicle Transport setVehicleCargo enableVehicleCargo getVehicleCargo isVehicleCargo vehicleCargoEnabled

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

Bottom Section