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>
36 lines
699 B
Plaintext
36 lines
699 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: Ruthberg
|
|
* Opens the Kestrel 4500 dialog
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* call ace_kestrel4500_fnc_createKestrelDialog
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
if (GVAR(Kestrel4500) || {underwater ACE_player} || {!(call FUNC(canShow))}) exitWith {false};
|
|
|
|
GVAR(Overlay) = false;
|
|
QGVAR(Layer) cutText ["", "PLAIN"];
|
|
|
|
GVAR(Kestrel4500) = true;
|
|
createDialog 'Kestrel4500_Display';
|
|
|
|
[{
|
|
if (!dialog || !GVAR(Kestrel4500)) exitWith {
|
|
GVAR(Kestrel4500) = false;
|
|
[_this select 1] call CBA_fnc_removePerFrameHandler;
|
|
};
|
|
|
|
[] call FUNC(updateDisplay);
|
|
}, 1, _this select 0] call CBA_fnc_addPerFrameHandler;
|
|
|
|
true
|