From ee3224f14ac4ff8d1cbf50fbabcc93313cc17b40 Mon Sep 17 00:00:00 2001 From: He-Man Date: Sun, 5 Feb 2017 18:51:57 +0100 Subject: [PATCH] Add files via upload --- .../event_handlers/EPOCH_InventoryClosed.sqf | 19 ++++++++++ .../event_handlers/EPOCH_InventoryOpened.sqf | 35 +++++++++++++++++++ 2 files changed, 54 insertions(+) create mode 100644 Sources/epoch_code/compile/event_handlers/EPOCH_InventoryClosed.sqf create mode 100644 Sources/epoch_code/compile/event_handlers/EPOCH_InventoryOpened.sqf diff --git a/Sources/epoch_code/compile/event_handlers/EPOCH_InventoryClosed.sqf b/Sources/epoch_code/compile/event_handlers/EPOCH_InventoryClosed.sqf new file mode 100644 index 00000000..3ef616af --- /dev/null +++ b/Sources/epoch_code/compile/event_handlers/EPOCH_InventoryClosed.sqf @@ -0,0 +1,19 @@ +/* + Author: Aaron Clark - EpochMod.com + + Contributors: [Ignatz] He-Man + + Description: + A3 Epoch InventoryClosed Eventhandler + + Licence: + Arma Public License Share Alike (APL-SA) - https://www.bistudio.com/community/licenses/arma-public-license-share-alike + + Github: + https://github.com/EpochModTeam/Epoch/tree/release/Sources/epoch_code/compile/event_handlers/EPOCH_InventoryClosed.sqf +*/ +params ["_unit","_container"]; +if !(EPOCH_arr_interactedObjs isEqualTo[]) then { + [EPOCH_arr_interactedObjs] remoteExec['EPOCH_server_save_vehicles', 2]; + EPOCH_arr_interactedObjs = []; +}; \ No newline at end of file diff --git a/Sources/epoch_code/compile/event_handlers/EPOCH_InventoryOpened.sqf b/Sources/epoch_code/compile/event_handlers/EPOCH_InventoryOpened.sqf new file mode 100644 index 00000000..457b0895 --- /dev/null +++ b/Sources/epoch_code/compile/event_handlers/EPOCH_InventoryOpened.sqf @@ -0,0 +1,35 @@ +/* + Author: Aaron Clark - EpochMod.com + + Contributors: [Ignatz] He-Man + + Description: + A3 Epoch InventoryOpened Eventhandler + + Licence: + Arma Public License Share Alike (APL-SA) - https://www.bistudio.com/community/licenses/arma-public-license-share-alike + + Github: + https://github.com/EpochModTeam/Epoch/tree/release/Sources/epoch_code/compile/event_handlers/EPOCH_InventoryOpened.sqf +*/ +params ["_unit","_container","_sec"]; +setMousePosition[0.5, 0.5]; +call EPOCH_showStats; +_this spawn EPOCH_initUI; +_containerlocked = (locked _container in [2, 3] || _container getVariable['EPOCH_Locked', false]); +_seclocked = false; +if !(isNull _sec) then { + _seclocked = (locked _sec in [2, 3] || _sec getVariable['EPOCH_Locked', false]); +}; +if (_containerlocked || _seclocked) then { + [] spawn { + disableSerialization; + waitUntil {!isNull findDisplay 602}; + _d = findDisplay 602; + _cargo = _d displayCtrl 6401; + _ground = _d displayCtrl 6321; + _cargo ctrlEnable false; + ctrlSetFocus _ground; + ctrlActivate _ground; + }; +}; \ No newline at end of file