canVehicleCargo: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "_{10,} " to "") |
Lou Montana (talk | contribs) m (Text replacement - " *\| *([Cc]omments|COMMENTS|Game|[Gg]ame [Nn]ame|Game [Vv]ersion|Game Version \(number surrounded by NO SPACES\)|Multiplayer Arguments( \("local" or "global"\))?|Effects|Multiplayer Effects( \("local" or "global"\))?|Multiplayer Exe...) |
||
Line 1: | Line 1: | ||
{{Command | {{Command | ||
| arma3 | | arma3 | ||
|1.62 | |1.62 | ||
|gr1= Vehicle in Vehicle Transport | |gr1= Vehicle in Vehicle Transport | ||
| 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 | ||
| vehicle [[canVehicleCargo]] cargo | | vehicle [[canVehicleCargo]] cargo | ||
|p1= vehicle: [[Object]] - vehicle carrying cargo | |p1= vehicle: [[Object]] - vehicle carrying cargo | ||
|p2= cargo: [[Object]] - cargo to put in vehicle | |p2= cargo: [[Object]] - cargo to put in vehicle | ||
| [[Array]] - [WillFitIntoCurrentVehicle, WillFitIntoEmptyVehicle] | | [[Array]] - [WillFitIntoCurrentVehicle, WillFitIntoEmptyVehicle] | ||
|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> | ||
|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 is already in a cargo space | Even if the Blackfish was empty offroad can't be loaded because it is already in a cargo space | ||
|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 | 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 | ||
| [[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]] | ||
}} | }} |
Revision as of 00:12, 18 January 2021
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 - [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