canVehicleCargo: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - " \| *(\[\[[a-zA-Z ]+\]\].+) \|x1=" to " |r1=$1 |x1=")
m (Text replacement - " +" to " ")
Line 32: Line 32:
|seealso= [[Arma_3_Vehicle_in_Vehicle_Transport| Vehicle in Vehicle Transport ]] [[setVehicleCargo]] [[enableVehicleCargo]] [[getVehicleCargo]] [[isVehicleCargo]] [[vehicleCargoEnabled]]
|seealso= [[Arma_3_Vehicle_in_Vehicle_Transport| Vehicle in Vehicle Transport ]] [[setVehicleCargo]] [[enableVehicleCargo]] [[getVehicleCargo]] [[isVehicleCargo]] [[vehicleCargoEnabled]]
}}
}}


{{GameCategory|arma3|Scripting Commands}}
{{GameCategory|arma3|Scripting Commands}}

Revision as of 23:41, 10 June 2021

Hover & click on the images for description

Description

Description:
Description needed
Groups:
Vehicle in Vehicle Transport

Syntax

Syntax:
Syntax needed
Parameters:
vehicle: Object - vehicle carrying cargo
cargo: Object - cargo to put in vehicle
Return Value:
Array - [WillFitIntoCurrentVehicle, WillFitIntoEmptyVehicle]

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 is 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