mirror of
https://github.com/EpochModTeam/Epoch.git
synced 2024-08-30 18:22:13 +00:00
some weird git bug, won't let me discard these. No changes
This commit is contained in:
parent
533a141dc7
commit
17fae05e4e
@ -1,19 +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 = [];
|
||||
/*
|
||||
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 = [];
|
||||
};
|
@ -1,68 +1,68 @@
|
||||
/*
|
||||
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
|
||||
*/
|
||||
//[[[cog import generate_private_arrays ]]]
|
||||
private ["_stored","_savecontainer","_blocked","_containerlocked","_seclocked"];
|
||||
//[[[end]]]
|
||||
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]);
|
||||
};
|
||||
_blocked = (_containerlocked && _seclocked);
|
||||
if (!_blocked && _containerlocked || _seclocked) then {
|
||||
[] spawn {
|
||||
|
||||
disableSerialization;
|
||||
waitUntil {!isNull findDisplay 602};
|
||||
private _d = findDisplay 602;
|
||||
private _cargo = _d displayCtrl 6401;
|
||||
private _ground = _d displayCtrl 6321;
|
||||
_cargo ctrlEnable false;
|
||||
ctrlSetFocus _ground;
|
||||
ctrlActivate _ground;
|
||||
};
|
||||
};
|
||||
|
||||
_savecontainer = objnull;
|
||||
_vehSlot1 = _container getVariable["VEHICLE_SLOT", "ABORT"];
|
||||
_storageSlot1 = _container getVariable["STORAGE_SLOT", "ABORT"];
|
||||
_vehSlot2 = _sec getVariable["VEHICLE_SLOT", "ABORT"];
|
||||
_storageSlot2 = _sec getVariable["STORAGE_SLOT", "ABORT"];
|
||||
if (_vehSlot1 != "ABORT" || _storageSlot1 != "ABORT") then{
|
||||
_savecontainer = _container;
|
||||
}
|
||||
else {
|
||||
if (_vehSlot2 != "ABORT" || _storageSlot2 != "ABORT") then{
|
||||
_savecontainer = _sec;
|
||||
};
|
||||
};
|
||||
if (!isnull _savecontainer && !_blocked) then {
|
||||
_savecontainer spawn {
|
||||
waituntil {!isnull (findDisplay 602)};
|
||||
while {!isnull (findDisplay 602)} do {
|
||||
_stored = [itemcargo _this, magazinecargo _this, backpackcargo _this];
|
||||
waituntil {uisleep 0.5; !(_stored isequalto [itemcargo _this, magazinecargo _this, backpackcargo _this]) || isnull (findDisplay 602)};
|
||||
if !(_stored isequalto [itemcargo _this, magazinecargo _this, backpackcargo _this]) then {
|
||||
_this call EPOCH_interact;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
_blocked
|
||||
/*
|
||||
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
|
||||
*/
|
||||
//[[[cog import generate_private_arrays ]]]
|
||||
private ["_stored","_savecontainer","_blocked","_containerlocked","_seclocked"];
|
||||
//[[[end]]]
|
||||
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]);
|
||||
};
|
||||
_blocked = (_containerlocked && _seclocked);
|
||||
if (!_blocked && _containerlocked || _seclocked) then {
|
||||
[] spawn {
|
||||
|
||||
disableSerialization;
|
||||
waitUntil {!isNull findDisplay 602};
|
||||
private _d = findDisplay 602;
|
||||
private _cargo = _d displayCtrl 6401;
|
||||
private _ground = _d displayCtrl 6321;
|
||||
_cargo ctrlEnable false;
|
||||
ctrlSetFocus _ground;
|
||||
ctrlActivate _ground;
|
||||
};
|
||||
};
|
||||
|
||||
_savecontainer = objnull;
|
||||
_vehSlot1 = _container getVariable["VEHICLE_SLOT", "ABORT"];
|
||||
_storageSlot1 = _container getVariable["STORAGE_SLOT", "ABORT"];
|
||||
_vehSlot2 = _sec getVariable["VEHICLE_SLOT", "ABORT"];
|
||||
_storageSlot2 = _sec getVariable["STORAGE_SLOT", "ABORT"];
|
||||
if (_vehSlot1 != "ABORT" || _storageSlot1 != "ABORT") then{
|
||||
_savecontainer = _container;
|
||||
}
|
||||
else {
|
||||
if (_vehSlot2 != "ABORT" || _storageSlot2 != "ABORT") then{
|
||||
_savecontainer = _sec;
|
||||
};
|
||||
};
|
||||
if (!isnull _savecontainer && !_blocked) then {
|
||||
_savecontainer spawn {
|
||||
waituntil {!isnull (findDisplay 602)};
|
||||
while {!isnull (findDisplay 602)} do {
|
||||
_stored = [itemcargo _this, magazinecargo _this, backpackcargo _this];
|
||||
waituntil {uisleep 0.5; !(_stored isequalto [itemcargo _this, magazinecargo _this, backpackcargo _this]) || isnull (findDisplay 602)};
|
||||
if !(_stored isequalto [itemcargo _this, magazinecargo _this, backpackcargo _this]) then {
|
||||
_this call EPOCH_interact;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
_blocked
|
||||
|
Loading…
Reference in New Issue
Block a user