mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
30 lines
769 B
Plaintext
30 lines
769 B
Plaintext
/*
|
|
Name: AGM_VehicleLock_fnc_setVehicleLock
|
|
|
|
Author: Pabst Mirror
|
|
|
|
Description:
|
|
Sets a vehicle lock state (MP safe)
|
|
|
|
Parameters:
|
|
0: OBJECT - vehicle
|
|
1: BOOL - new lock state
|
|
|
|
Returns:
|
|
Nothing
|
|
|
|
Example:
|
|
[tank1, false] call AGM_VehicleLock_fnc_setVehicleLock;
|
|
*/
|
|
|
|
private ["_veh","_isLocked","_lockNumber"];
|
|
|
|
_veh = [_this, 0, objNull, [objNull]] call bis_fnc_param;
|
|
_isLocked = [_this, 1, false, [false]] call bis_fnc_param;
|
|
|
|
if (isNull _veh) exitWith {["AGM_VehicleLock_fnc_setVehicleLock: null vehicle"] call BIS_fnc_error;};
|
|
|
|
_lockNumber = if (_isLocked) then {2} else {0};
|
|
[[_veh, _lockNumber], "{(_this select 0) lock (_this select 1)}", 2] call AGM_Core_fnc_execRemoteFnc;
|
|
_veh setVariable ["AGM_LockedInventory", _isLocked, true];
|