Jump to content

setTimer


Lloyd Logan

Recommended Posts

Posted

How would i put

setTimer ( paynspray, 2000, 1 ) 

into this code? So that when the player enters the marker, it takes a bit of time before it repair the vehicle?

function paynspray(hitElement) 
    fixVehicle(hitElement) 
 end 
addEventHandler("onMarkerHit", dutymarker, paynspray) 

Posted
You must use
getPedOccupiedVehicle 

Not need

be there should be a check for the hitElement type so that it doesnt try to fixVehicle the player outputing an error

Posted
function paynspray(hitElement) 
    setTimer ( fixVehicle, 2000, 1, hitElement ) 
end 
addEventHandler("onMarkerHit", dutymarker, paynspray) 

So where is the fixVehicle in this? :/

Posted
function paynspray(hitElement) 
    setTimer ( fixVehicle, 2000, 1, hitElement ) 
end 
addEventHandler("onMarkerHit", dutymarker, paynspray) 

So where is the fixVehicle in this? :/

setTimer ( fixVehicle, 2000, 1, hitElement )

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...