mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
37 lines
767 B
Plaintext
37 lines
767 B
Plaintext
/*
|
|
* Author: Ruthberg
|
|
* Opens the Kestrel 4500 dialog
|
|
*
|
|
* Arguments:
|
|
* Nothing
|
|
*
|
|
* Return Value:
|
|
* Nothing
|
|
*
|
|
* Example:
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
if (GVAR(Kestrel4500)) exitWith { false };
|
|
if (underwater ACE_player) exitWith { false };
|
|
if (!("ACE_Kestrel4500" in (uniformItems ACE_player)) && !("ACE_Kestrel4500" in (vestItems ACE_player))) exitWith { false };
|
|
|
|
GVAR(Overlay) = false;
|
|
3 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
|