ACE3/addons/medical_menu/functions/fnc_openMenu.sqf

33 lines
576 B
Plaintext
Raw Normal View History

/*
* Author: Glowbal
* Open the medical menu for target
*
* Arguments:
* 0: Target <OBJECT>
*
* Return Value:
* NONE
*
* Public: No
*/
2015-08-02 14:56:27 +00:00
#include "script_component.hpp"
private ["_interactionTarget"];
_interactionTarget = _this select 0;
if (dialog || isNull _interactionTarget) exitwith {
2015-08-02 14:56:27 +00:00
disableSerialization;
private "_display";
_display = uiNamespace getVariable QGVAR(medicalMenu);
if (!isnil "_display") then {
closeDialog 314412;
};
};
GVAR(INTERACTION_TARGET) = _interactionTarget;
2015-08-02 14:56:27 +00:00
createDialog QGVAR(medicalMenu);
GVAR(lastOpenedOn) = ACE_time;