ACE3/addons/disarming/functions/fnc_eventTargetStart.sqf

43 lines
948 B
Plaintext
Raw Normal View History

2015-02-27 21:23:46 +00:00
/*
* Author: PabstMirror
2015-08-09 03:18:26 +00:00
*
2015-03-21 01:17:49 +00:00
* Disarm Event Handler, Starting func, called on the target.
* If target has to remove uniform/vest, this will add all uniform/vest items to the drop list.
2015-02-27 21:23:46 +00:00
*
* Arguments:
* 0: caller (player) <OBJECT>
* 1: target <OBJECT>
* 2: type of disarm <STRING>
*
* Return Value:
* Nothing
*
* Example:
2015-02-28 00:38:23 +00:00
* eventTargetStart
2015-02-27 21:23:46 +00:00
*
* Public: No
*/
#include "script_component.hpp"
2015-08-09 03:18:26 +00:00
params ["_caller", "_target", "_listOfObjectsToRemove"];
2015-02-27 21:23:46 +00:00
2015-04-16 17:36:12 +00:00
private "_itemsToAdd";
2015-02-28 00:38:23 +00:00
_itemsToAdd = [];
{
if (_x == (uniform _target)) then {
_itemsToAdd = _itemsToAdd + (uniformItems _target);
};
if (_x == (vest _target)) then {
_itemsToAdd = _itemsToAdd + (vestItems _target);
};
2015-08-15 01:13:41 +00:00
} forEach _listOfObjectsToRemove;
2015-02-28 00:38:23 +00:00
{
if (!(_x in _listOfObjectsToRemove)) then {
_listOfObjectsToRemove pushBack _x;
};
2015-08-15 01:13:41 +00:00
} forEach _itemsToAdd;
2015-02-28 00:38:23 +00:00
2015-02-27 22:16:35 +00:00
[_caller, _target, _listOfObjectsToRemove] call FUNC(disarmDropItems);