mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
742626ff1a
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
30 lines
588 B
Plaintext
30 lines
588 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: jokoho48
|
|
* Called from "Take" EH.
|
|
*
|
|
* Arguments:
|
|
* 0: Unit <OBJECT>
|
|
* 1: Container <OBJECT>
|
|
* 2: Item <STRING>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [player, backpackContainer player, "ACE_Banana"] call ace_reload_fnc_onTake
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_unit", "_container", "_item"];
|
|
|
|
if (
|
|
_unit == ACE_player &&
|
|
{GVAR(displayText)} &&
|
|
{_item == currentMagazine _unit} &&
|
|
{_container in [uniformContainer _unit, vestContainer _unit, backpackContainer _unit]}
|
|
) then {
|
|
_unit call FUNC(displayAmmo);
|
|
};
|