ACE3/addons/common/functions/fnc_removeSpecificMagazine.sqf

83 lines
2.1 KiB
Plaintext
Raw Normal View History

#include "script_component.hpp"
/*
2015-03-24 04:18:00 +00:00
* Author: esteldunedain
* Removes a magazine from the unit that has an specific ammo count
*
2015-09-19 17:26:45 +00:00
* Arguments:
* 0: Unit <OBJECT>
* 1: Magazine <STRING>
* 2: Ammo count <NUMBER>
*
2015-09-19 17:26:45 +00:00
* Return Value:
* None
2015-09-19 17:26:45 +00:00
*
* Example:
* [bob, "magazine", 5] call ace_common_fnc_removeSpecificMagazine
*
2015-09-19 17:26:45 +00:00
* Public: No
*/
params [["_unit", objNull, [objNull]], ["_magazineType", "", [""]], ["_ammoCount", 0, [0]]];
2015-09-19 17:26:45 +00:00
private _isRemoved = false;
// Check uniform
private _magazines = magazinesAmmoCargo uniformContainer _unit select {_x select 0 == _magazineType};
private _index = _magazines find [_magazineType, _ammoCount];
if (_index > -1) exitWith {
{
2015-09-19 17:26:45 +00:00
_unit removeItemFromUniform (_x select 0);
false
} count _magazines;
{
if (!_isRemoved && (_x isEqualTo [_magazineType,_ammoCount])) then {
_isRemoved = true;
} else {
2015-09-19 17:26:45 +00:00
(uniformContainer _unit) addMagazineAmmoCargo [_x select 0, 1, _x select 1];
};
2015-09-19 17:26:45 +00:00
false
} count _magazines;
};
// Check vest
_magazines = magazinesAmmoCargo vestContainer _unit select {_x select 0 == _magazineType};
_index = _magazines find [_magazineType, _ammoCount];
if (_index > -1) exitWith {
{
2015-09-19 17:26:45 +00:00
_unit removeItemFromVest (_x select 0);
false
} count _magazines;
{
if (!_isRemoved && (_x isEqualTo [_magazineType,_ammoCount])) then {
_isRemoved = true;
} else {
2015-09-19 17:26:45 +00:00
(vestContainer _unit) addMagazineAmmoCargo [_x select 0, 1, _x select 1];
};
2015-09-19 17:26:45 +00:00
false
} count _magazines;
};
// Check backpack
_magazines = magazinesAmmoCargo backpackContainer _unit select {_x select 0 == _magazineType};
_index = _magazines find [_magazineType, _ammoCount];
if (_index > -1) exitWith {
{
2015-09-19 17:26:45 +00:00
_unit removeItemFromBackpack (_x select 0);
false
} count _magazines;
{
if (!_isRemoved && (_x isEqualTo [_magazineType,_ammoCount])) then {
_isRemoved = true;
} else {
2015-09-19 17:26:45 +00:00
(backpackContainer _unit) addMagazineAmmoCargo [_x select 0, 1, _x select 1];
};
2015-09-19 17:26:45 +00:00
false
} count _magazines;
};