ACE3/addons/backpacks/functions/fnc_isBackpack.sqf
2023-09-24 12:06:20 -05:00

27 lines
715 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: commy2
* Check if the given backpack is an actual backpack that can store items. Parachute, static weapon packs, etc. will return false.
*
* Arguments:
* 0: Backpack <OBJECT, STRING>
*
* Return Value:
* Boolean <BOOL>
*
* Example:
* [bob] call ace_backpacks_fnc_isBackpack
*
* Public: Yes
*/
params [["_backpack", objNull, [objNull, ""]]];
if (_backpack isEqualType objNull) exitWith {
maxLoad _backpack > 0 && {getText (configOf _backpack >> "vehicleClass") == "backpacks"}
};
private _config = configFile >> "CfgVehicles" >> _backpack;
getText (_config >> "vehicleClass") == "backpacks" && {getNumber (_config >> "maximumLoad") > 0} // return