canVehicleCargo: Difference between revisions
Jump to navigation
Jump to search
m (Bot: Reverted to revision 109883 by killzone_kid on 2018-10-25T08:04:44Z) |
m (template:command argument fix) |
||
Line 6: | Line 6: | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| Returns bool array if it is possible to load cargo inside vehicle and if possible to load cargo into empty vehicle |= | | Returns bool array if it is possible to load cargo inside vehicle and if possible to load cargo into empty vehicle |DESCRIPTION= | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
| vehicle [[canVehicleCargo]] cargo |= | | vehicle [[canVehicleCargo]] cargo |SYNTAX= | ||
|p1= vehicle: [[Object]] - vehicle carrying cargo |= | |p1= vehicle: [[Object]] - vehicle carrying cargo |PARAMETER1= | ||
|p2= cargo: [[Object]] - cargo to put in vehicle |= | |p2= cargo: [[Object]] - cargo to put in vehicle |PARAMETER2= | ||
| [[Array]] - [WillFitIntoCurrentVehicle, WillFitIntoEmptyVehicle] |= | | [[Array]] - [WillFitIntoCurrentVehicle, WillFitIntoEmptyVehicle] |RETURNVALUE= | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
|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> |= | </code> |EXAMPLE1= | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
Line 26: | Line 26: | ||
<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 |= | Even if the Blackfish was empty offroad can't be loaded because it's already in a cargo space |EXAMPLE2= | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
Line 32: | Line 32: | ||
<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 |= | 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 |EXAMPLE3= | ||
____________________________________________________________________________________________ | ____________________________________________________________________________________________ | ||
|mp= - |= Multiplayer Behaviour | |mp= - |= Multiplayer Behaviour | ||
| [[Arma_3_Vehicle_in_Vehicle_Transport| Vehicle in Vehicle Transport ]] [[setVehicleCargo]] [[enableVehicleCargo]] [[getVehicleCargo]] [[isVehicleCargo]] [[vehicleCargoEnabled]] |= | | [[Arma_3_Vehicle_in_Vehicle_Transport| Vehicle in Vehicle Transport ]] [[setVehicleCargo]] [[enableVehicleCargo]] [[getVehicleCargo]] [[isVehicleCargo]] [[vehicleCargoEnabled]] |SEEALSO= | ||
}} | }} |
Revision as of 14:35, 7 April 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