ACE3/addons/backpacks/functions/fnc_isBackpack.sqf
2015-08-13 21:56:02 +02:00

24 lines
552 B
Plaintext

/*
* Author: commy2
*
* Check if the given backpack is an actual backpack that can store items. Parachute backpacks will return false for example.
*
* Argument:
* 0: A backpack (Object or String)
*
* Return value:
* Boolean (Bool)
*/
#include "script_component.hpp"
private ["_config"];
params ["_backpack"];
if (typeName _backpack == "OBJECT") then {
_backpack = typeOf _backpack;
};
_config = configFile >> "CfgVehicles" >> _backpack;
getText (_config >> "vehicleClass") == "backpacks" && {getNumber (_config >> "maximumLoad") > 0}