ACE3/addons/cargo/functions/fnc_getSizeItem.sqf

23 lines
417 B
Plaintext
Raw Normal View History

2015-08-10 21:07:47 +00:00
/*
* Author: Glowbal
* Get the cargo size of an object
*
* Arguments:
* 0: Object <OBJECT>
*
* Return value:
* Cargo size. <NUMBER> (default: -1)
2015-08-10 21:07:47 +00:00
*
* Public: No
*/
#include "script_component.hpp"
2015-08-14 16:42:22 +00:00
private "_config";
params ["_item"];
_config = (configFile >> "CfgVehicles" >> typeof _item >> QGVAR(size));
if (isNumber (_config)) exitwith {
_item getvariable [QGVAR(size), getNumber (_config)];
2015-08-10 21:07:47 +00:00
};
-1