ACE3/addons/common/functions/fnc_useMagazine.sqf
2015-09-20 15:52:40 +02:00

33 lines
589 B
Plaintext

/*
* Author: Glowbal
* Use magazine
*
* Arguments:
* 0: unit <OBJECT>
* 1: magazine <STRING>
*
* Return Value:
* if magazine has been used. <BOOL>
*
* Public: Yes
*/
#include "script_component.hpp"
params ["_unit", "_magazine", ["_vehicleUsage", false]];
private "_return";
_return = false;
if !(_vehicleUsage) then {
if (_magazine != "") then {
_unit removeMagazine _magazine;
_return = true;
};
[format ["fnc_useMagazine: %1 | %2", _this, _return]] call FUNC(debug);
//} else {
// @todo implement shared magazine functionality
};
_return