Jump to content

Uniemożliwienie wsiadania do pojazdu


Recommended Posts

Witam.

Czy mógłby ktoś mi napisać funkcje że jeżeli gracz nie posiada prawka to nie może wejść do auta ??, oczywiśćie ja napisze to że jeżeli masz prawko lub jeżeli nei masz prawka to tylko chce funkcje że nie możesz wejść do auta tylko na rowery...

Edited by Guest
Link to comment

Jak krowie na rowie

  
function czyGraczMaPrawoJazdy() 
 -- tu dopisz kod sprawdzajacy, narazie zwrocimy false 
 return false 
end 
  
addEventHandler("onClientVehicleStartEnter", root, function(plr,seat) 
 if plr~=localPlayer then return end -- skrypt po stronie klienta wiec rozpatrujemy tylko lokalnego gracza 
 if seat~=0 then return end -- interesuja nas tylko kierowcy 
 if not czyGraczMaPrawoJazdy() then 
  outputChatBox("Nie masz prawa jazdy.") 
  cancelEvent() 
  return 
 end 
 -- wszystko ok 
end) 
  

Link to comment

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...