ACE3/addons/medical/functions/fnc_addToTriageCard.sqf
SilentSpike 108ff4f644 Replace ACE event system calls with CBA counterparts
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
2016-05-22 16:47:39 +01:00

45 lines
1005 B
Plaintext

/*
* Author: Glowbal
* Add an entry to the triage card
*
* Arguments:
* 0: The patient <OBJECT>
* 1: The new item classname <STRING>
*
* Return Value:
* None
*
* Public: Yes
*/
#include "script_component.hpp"
private ["_log", "_inList", "_amount"];
params ["_unit", "_newItem"];
if (!local _unit) exitWith {
["addToTriageCard", _this, _unit] call CBA_fnc_targetEvent;
};
_log = _unit getVariable [QGVAR(triageCard), []];
_inList = false;
_amount = 1;
{
if ((_x select 0) == _newItem) exitWith {
private "_info";
_info = _log select _forEachIndex;
_info set [1,(_info select 1) + 1];
_info set [2, ACE_gameTime];
_log set [_forEachIndex, _info];
_amount = (_info select 1);
_inList = true;
};
} forEach _log;
if (!_inList) then {
_log pushBack [_newItem, 1, ACE_gameTime];
};
_unit setVariable [QGVAR(triageCard), _log, true];
["Medical_onItemAddedToTriageCard", [_unit, _newItem, _amount]] call CBA_fnc_localEvent;