36 lines
737 B
Plaintext
36 lines
737 B
Plaintext
#include "..\script_component.hpp"
|
|
|
|
/*
|
|
* File: fnc_openUI.sqf
|
|
* Author: IDSolutions
|
|
* Date: 2026-01-28
|
|
* Last Update: 2026-01-30
|
|
* Public: No
|
|
*
|
|
* Description:
|
|
* Opens the player interaction interface.
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return Value:
|
|
* UI opened [BOOL]
|
|
*
|
|
* Example:
|
|
* call forge_client_actor_fnc_openUI;
|
|
*/
|
|
|
|
private _display = createDialog ["RscActorMenu", true];
|
|
private _ctrl = _display displayCtrl 1001;
|
|
|
|
_ctrl ctrlAddEventHandler ["JSDialog", {
|
|
params ["_control", "_isConfirmDialog", "_message"];
|
|
|
|
[_control, _isConfirmDialog, _message] call FUNC(handleUIEvents);
|
|
}];
|
|
|
|
_ctrl ctrlWebBrowserAction ["LoadFile", QPATHTOF2(ui\_site\index.html)];
|
|
// _ctrl ctrlWebBrowserAction ["OpenDevConsole"];
|
|
|
|
true;
|