Jump to content

Recommended Posts

Witam chcialbym sie zapytac czy da sie zrobic marker w ktorym dostaje sie kase lecz jak tylko wjedziesz danym pojazdem ze jak np masz marker i wjedziesz burrito to ci nie da kasy a jak wjedziesz np Infernusem to ci da 50$ jezeli tak prosze o kod lub funkcje.

Link to comment
  
addEventHandler("onMarkerHit", marker, function(he,md) 
 if not md or getElementType(he)~="player" then return end 
 local pojazd=getPedOccupiedVehicle(he) 
 if not pojazd then return end -- gracz przyszedl pieszo 
 if getVehicleController(pojazd)~=he then return end -- gracz nie jest kierowca 
 if getElementModel(pojazd)==TU_WSTAW_ID_INFERNUSA then 
  outputChatBox("Jezdzisz Infernusem, dostajesz 50$", he) 
  givePlayerMoney(he, 50) 
 end 
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...