ACE3/addons/cargo/functions/fnc_getCargoSpaceLeft.sqf

21 lines
401 B
Plaintext
Raw Normal View History

#include "..\script_component.hpp"
2015-08-10 21:07:47 +00:00
/*
* Author: Glowbal
* Gets the object's remaining cargo space.
2015-08-10 21:07:47 +00:00
*
* Arguments:
* 0: Holder object (vehicle) <OBJECT>
2015-08-10 21:07:47 +00:00
*
2016-06-18 09:50:41 +00:00
* Return Value:
2015-08-10 21:07:47 +00:00
* Cargo space left <NUMBER>
*
2015-08-16 20:41:35 +00:00
* Example:
* cursorObject call ace_cargo_fnc_getCargoSpaceLeft
2015-08-16 20:41:35 +00:00
*
2015-08-10 21:07:47 +00:00
* Public: No
*/
params ["_vehicle"];
2015-08-16 20:41:35 +00:00
_vehicle getVariable [QGVAR(space), getNumber (configOf _vehicle >> QGVAR(space))]