I am trying to install virtual garage. Need help on fixing a line of script.
in my server_monitor.sqf I have a line of script that is:
if ((count _intentory > 0) && !(typeOf( _object) in DZE_DoorsLocked)) then {
I need to add the following to it:
if ((count _inventory > 0) && !((typeOf _object) in DZE_Garage)) then {
Would it be:
if ((count _intentory > 0) && !((typeOf( _object) in DZE_DoorsLocked),((typeOf _object) in DZE_Garage)) then {