Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- private ["_vehicle","_status"];
- _vehicle = _this select 0;
- _status = _this select 1;
- if (local _vehicle) then {
- if(_status) then {
- _vehicle setVehicleLock "LOCKED";
- _vehicle setVariable ["BTC_Cannot_Lift",true,true];
- _vehicle setVariable ["MF_Tow_Cannot_Tow",true,true];
- } else {
- _vehicle setVehicleLock "UNLOCKED";
- _vehicle setVariable ["BTC_Cannot_Lift",false,true];
- _vehicle setVariable ["MF_Tow_Cannot_Tow",false,true];
- };
- };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement