mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
21 lines
398 B
Plaintext
21 lines
398 B
Plaintext
/*
|
|
* Author: Glowbal
|
|
* Get the cargo space left on object.
|
|
*
|
|
* Arguments:
|
|
* 0: Object <OBJECT>
|
|
*
|
|
* Return value:
|
|
* Cargo space left <NUMBER>
|
|
*
|
|
* Example:
|
|
* [object] call ace_cargo_fnc_getCargoSpaceLeft
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_object"];
|
|
|
|
_object getVariable [QGVAR(space), getNumber (configFile >> "CfgVehicles" >> typeOf _object >> QGVAR(space))]
|