canVehicleCargo

From Bohemia Interactive Community
Jump to navigation Jump to search
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
Groups:
Vehicle in Vehicle Transport

Syntax

Syntax:
vehicle canVehicleCargo cargo
Parameters:
vehicle: Object - vehicle carrying cargo
cargo: Object - cargo to put in vehicle
Return Value:
Array of Booleans - [willFitIntoCurrentVehicle, willFitIntoEmptyVehicle]

Examples

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

Additional Information

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

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