mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
a3aef6a066
Co-authored-by: LinkIsGrim <salluci.lovi@gmail.com>
48 lines
1.4 KiB
Plaintext
48 lines
1.4 KiB
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: PabstMirror
|
|
* Handles the inventory opening.
|
|
*
|
|
* Arguments:
|
|
* 0: Unit <OBJECT>
|
|
* 1: Container <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [player, car] call ACE_VehicleLock_fnc_onOpenInventory;
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_unit", "_container"];
|
|
TRACE_2("params",_unit,_container);
|
|
|
|
//Only check for player:
|
|
if (_unit != ACE_player) exitWith {};
|
|
|
|
if (GVAR(LockVehicleInventory) && //if setting not enabled
|
|
{(vehicle ACE_player) == ACE_player} && //Player dismounted
|
|
{(_container isKindOf "Car") || {(_container isKindOf "Tank") || {_container isKindOf "Helicopter"}}} && //container is a lockable veh
|
|
{(locked _container) in [2,3]} && //Vehicle is locked
|
|
{!([ACE_player, _container] call FUNC(hasKeyForVehicle))} //player doesn't have key
|
|
) then {
|
|
//Give feedback that vehicle is locked
|
|
playSound "ACE_Sound_Click";
|
|
|
|
//For compatibiltiy with ACRE, wait until the display is open, close it and then reopen the player's own inventory
|
|
//ref: http://gitlab.idi-systems.com/idi-systems/acre2-public/issues/70
|
|
[{
|
|
!isNull (findDisplay 602)
|
|
},
|
|
{
|
|
TRACE_1("car display open: closing",_this);
|
|
(findDisplay 602) closeDisplay 0;
|
|
[{
|
|
TRACE_1("Opening Player Inventory",_this);
|
|
ACE_player action ["Gear", objNull];
|
|
}, []] call CBA_fnc_execNextFrame;
|
|
}, []] call CBA_fnc_waitUntilAndExecute;
|
|
};
|