mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
33 lines
589 B
Plaintext
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
|