13 lines
340 B
Plaintext
Executable File
13 lines
340 B
Plaintext
Executable File
private ["_vehicle","_status"];
|
|
_vehicle = _this select 0;
|
|
_status = _this select 1;
|
|
|
|
if (local _vehicle) then {
|
|
if(_status) then {
|
|
_vehicle setVehicleLock "LOCKED";
|
|
//_vehicle setVariable ["MF_Tow_Cannot_Tow",true,true];
|
|
} else {
|
|
_vehicle setVehicleLock "UNLOCKED";
|
|
//_vehicle setVariable ["MF_Tow_Cannot_Tow",false,true];
|
|
};
|
|
}; |