uniunicorn Posted September 20, 2019 Share Posted September 20, 2019 Hi guys, i edited a little code for anti car-jack script. This script works but i want to block the car-jack while there's a driver. Please Help Me! function checkCarJack(thePlayer, seat, jacked) if (thePlayer == getLocalPlayer()) and (seat == 0) then cancelEvent() outputChatBox("[!] #f0f0f0CarJack atmanız yasaklanmıştır!", 255, 0, 0, true) end end addEventHandler("onClientVehicleStartEnter", getRootElement(), checkCarJack) Link to comment
Furzy Posted September 20, 2019 Share Posted September 20, 2019 check with setTimer removePedFromVehicle setTimer Link to comment
uniunicorn Posted September 20, 2019 Author Share Posted September 20, 2019 I didn't got that, so can you place it to code? Link to comment
Furzy Posted September 20, 2019 Share Posted September 20, 2019 (edited) 3 hours ago, uniunicorn said: I didn't got that, so can you place it to code? function checkCarJack(thePlayer, seat, jacked) veh = getPedOccupiedVehicleSeat(jacked) if jacked and veh == 0 then cancelEvent() outputChatBox("[!] #f0f0f0CarJack atmanız yasaklanmıştır!", 255, 0, 0, true) end end addEventHandler("onVehicleStartEnter", getRootElement(), checkCarJack) server-side sorry i didnt underst what youre trying Edited September 20, 2019 by Furzy Link to comment
uniunicorn Posted September 20, 2019 Author Share Posted September 20, 2019 Thank you so much! But the outputchatbox doesn't work! Link to comment
Furzy Posted September 20, 2019 Share Posted September 20, 2019 26 minutes ago, uniunicorn said: Thank you so much! But the outputchatbox doesn't work! sorry. outputChatBox("[!] #f0f0f0CarJack atmanız yasaklanmıştır!",thePlayer, 255, 0, 0, true) Link to comment
uniunicorn Posted September 21, 2019 Author Share Posted September 21, 2019 You're so good man! Thanks. Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now