mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
18f09b9310
- ace_addedHeartRateAdjustment -> ace_heartRateAdjustmentAdded - ace_cargoAddedByClass -> ace_cargoByClassAdded - ace_enteredCardiacArrest -> ace_cardiacArrestEntered - ace_itemAddedToTriageCard -> ace_triageCardItemAdded - ace_reload_linkedAmmo -> ace_reload_ammoLinked - ace_reload_returnedAmmo -> ace_reload_ammoReturned - ace_treatmentSuccess -> ace_treatmentSucceded - ace_common_engineOn -> ace_common_setEngine - ace_explosives_clientRequestOrientations -> ace_explosives_requestOrientations - ace_explosives_serverSendOrientations -> ace_explosives_sendOrientations - ace_interaction_lampTurnOff -> ace_interaction_setLampOff - ace_interaction_lampTurnOn -> ace_interaction_setLampOn - ace_overheating_spareBarrelsLoadCoolest -> ace_overheating_loadCoolestSpareBarrel - ace_overheating_spareBarrelsSendTemperatureHint -> ace_overheating_sendSpareBarrelTemperatureHint Close #3533
43 lines
975 B
Plaintext
43 lines
975 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"
|
|
|
|
params ["_unit", "_newItem"];
|
|
|
|
if (!local _unit) exitWith {
|
|
[QGVAR(addToTriageCard), _this, _unit] call CBA_fnc_targetEvent;
|
|
};
|
|
|
|
private _log = _unit getVariable [QGVAR(triageCard), []];
|
|
private _inList = false;
|
|
private _amount = 1;
|
|
{
|
|
if ((_x select 0) == _newItem) exitWith {
|
|
private _info = _log select _forEachIndex;
|
|
_info set [1,(_info select 1) + 1];
|
|
_info set [2, CBA_missionTime];
|
|
_log set [_forEachIndex, _info];
|
|
|
|
_amount = (_info select 1);
|
|
_inList = true;
|
|
};
|
|
} forEach _log;
|
|
|
|
if (!_inList) then {
|
|
_log pushBack [_newItem, 1, CBA_missionTime];
|
|
};
|
|
_unit setVariable [QGVAR(triageCard), _log, true];
|
|
["ace_triageCardItemAdded", [_unit, _newItem, _amount]] call CBA_fnc_localEvent;
|