From 89c04752b8327b6522e38cdb8a3e6cc9a45b2cdc Mon Sep 17 00:00:00 2001 From: ElPumpo Date: Wed, 7 Mar 2018 19:12:46 +0100 Subject: [PATCH] Cuffed people can no longer leave vehicle --- client/main.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client/main.lua b/client/main.lua index 01da2cbc..7f08190b 100644 --- a/client/main.lua +++ b/client/main.lua @@ -1788,6 +1788,9 @@ Citizen.CreateThread(function() DisableControlAction(0, 142, true) -- MeleeAttackAlternate DisableControlAction(0, 30, true) -- MoveLeftRight DisableControlAction(0, 31, true) -- MoveUpDown + DisableControlAction(0, 24, true) -- Shoot + DisableControlAction(0, 92, true) -- Shoot in car + DisableControlAction(0, 75, true) -- Leave Vehicle end end end)