mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
108ff4f644
Regex used: \[(.+?),(.+?),(.+?)\]\s+call\s+E?FUNC\((common,)?(target|object)Event\) [$1,$3,$2] call CBA_fnc_targetEvent E?FUNC\((common,)?(server|global|local)Event\) CBA_fnc_$2Event E?FUNC\((common,)?(add|remove)EventHandler\) CBA_fnc_$2EventHandler
54 lines
1.9 KiB
Plaintext
54 lines
1.9 KiB
Plaintext
/*
|
|
* Author: BaerMitUmlaut
|
|
* Pass spare magazine for the specified weapon.
|
|
*
|
|
* Arguments:
|
|
* 0: Unit that passes the magazine <OBJECT>
|
|
* 1: Unit to pass the magazine to <OBJECT>
|
|
* 2: Weapon classname <STRING>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [_player, _target, "arifle_MX_F"] call ace_interaction_fnc_magToPassazine
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
params ["_player", "_target", "_weapon"];
|
|
private ["_compatibleMags", "_filteredMags", "_magToPass", "_magToPassIndex", "_playerName", "_magToPassDisplayName"];
|
|
|
|
_compatibleMags = getArray (configfile >> "CfgWeapons" >> _weapon >> "magazines");
|
|
_filteredMags = magazinesAmmoFull _player select {(_x select 0) in _compatibleMags && {!(_x select 2)}};
|
|
|
|
//select magazine with most ammo
|
|
_magToPass = _filteredMags select 0;
|
|
_magToPassIndex = 0;
|
|
{
|
|
_x params ["_className", "_ammoCount"];
|
|
if ((_ammoCount > (_magToPass select 1)) && (_target canAdd _className)) then {
|
|
_magToPass = _x;
|
|
_magToPassIndex = _forEachIndex;
|
|
};
|
|
} foreach _filteredMags;
|
|
|
|
//remove all magazines and add them again, except the one to be passed
|
|
//needed because of missing commands, see http://feedback.arma3.com/view.php?id=12782
|
|
_magToPass params ["_magToPassClassName", "_magToPassAmmoCount"];
|
|
_player removeMagazines _magToPassClassName;
|
|
{
|
|
_x params ["_className", "_ammoCount"];
|
|
if ((_className == _magToPassClassName) && (_forEachIndex != _magToPassIndex)) then {
|
|
_player addMagazine [_className, _ammoCount];
|
|
};
|
|
} foreach _filteredMags;
|
|
|
|
_player playActionNow "PutDown";
|
|
|
|
_target addMagazine [_magToPassClassName, _magToPassAmmoCount];
|
|
|
|
_playerName = [_player] call EFUNC(common,getName);
|
|
_magToPassDisplayName = getText (configFile >> "CfgMagazines" >> _magToPassClassName >> "displayName");
|
|
["displayTextStructured", [[LSTRING(PassMagazineHint), _playerName, _magToPassDisplayName], 1.5, _target], [_target]] call CBA_fnc_targetEvent; |