13 lines
340 B
Plaintext
13 lines
340 B
Plaintext
|
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];
|
||
|
};
|
||
|
};
|