canVehicleCargo: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "|= Game name" to "|Game name=") |
Lou Montana (talk | contribs) m (Text replacement - "|= Game version" to "|Game version=") |
||
Line 3: | Line 3: | ||
| arma3 |Game name= | | arma3 |Game name= | ||
|1.62| | |1.62|Game version= | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
Revision as of 04:42, 31 August 2019
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 - 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'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