42 lines
943 B
Plaintext
42 lines
943 B
Plaintext
#include "..\script_component.hpp"
|
|
|
|
/*
|
|
* File: fnc_openUI.sqf
|
|
* Author: IDSolutions
|
|
* Date: 2026-01-28
|
|
* Last Update: 2026-01-28
|
|
* Public: No
|
|
*
|
|
* Description:
|
|
* Opens the player bank interaction interface.
|
|
*
|
|
* Arguments:
|
|
* 0: [BOOL] - Whether to open the ATM interface
|
|
*
|
|
* Return Value:
|
|
* UI opened [BOOL]
|
|
*
|
|
* Example:
|
|
* [true] call forge_client_bank_fnc_openUI;
|
|
*/
|
|
|
|
params [["_isATM", false, [false]]];
|
|
|
|
private _display = (findDisplay 46) createDisplay "RscBank";
|
|
private _ctrl = (_display displayCtrl 1002);
|
|
|
|
_ctrl ctrlAddEventHandler ["JSDialog", {
|
|
params ["_control", "_isConfirmDialog", "_message"];
|
|
|
|
[_control, _isConfirmDialog, _message] call FUNC(handleUIEvents);
|
|
}];
|
|
|
|
if (_isATM) then {
|
|
_ctrl ctrlWebBrowserAction ["LoadFile", QPATHTOF2(ui\_site\atm.html)];
|
|
} else {
|
|
_ctrl ctrlWebBrowserAction ["LoadFile", QPATHTOF2(ui\_site\bank.html)];
|
|
};
|
|
// _ctrl ctrlWebBrowserAction ["OpenDevConsole"];
|
|
|
|
true;
|