mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
35 lines
646 B
Plaintext
35 lines
646 B
Plaintext
/*
|
|
* Author: Glowbal
|
|
* Open the medical menu for target
|
|
*
|
|
* Arguments:
|
|
* 0: Target <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* If action was taken <BOOL>
|
|
*
|
|
* Example:
|
|
* [some_player] call ace_medical_menu_fnc_openMenu
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_interactionTarget"];
|
|
|
|
if (dialog || {isNull _interactionTarget}) exitWith {
|
|
disableSerialization;
|
|
|
|
private _display = uiNamespace getVariable QGVAR(medicalMenu);
|
|
if (!isNil "_display") then {
|
|
closeDialog 314412;
|
|
};
|
|
};
|
|
|
|
GVAR(INTERACTION_TARGET) = _interactionTarget;
|
|
|
|
createDialog QGVAR(medicalMenu);
|
|
GVAR(lastOpenedOn) = CBA_missionTime;
|
|
|
|
true
|