Tio.Andy Posted February 28, 2019 Share Posted February 28, 2019 Precisso de uma funcao que cria uma markert e destrua o qualquer veiculo que passe por cima Link to comment
Doongogar Posted November 25, 2021 Share Posted November 25, 2021 On 28/02/2019 at 12:05, Tio.Andy said: Precisso de uma funcao que cria uma markert e destrua o qualquer veiculo que passe por cima markerDestroy = createMarker(x,y,z) -- nomeia o marker function DestruirVeiculoMarker(veiculo) if getElementType(veiculo) == "vehicle" then -- vericifa se o tipo de elemento que hitou e um veiculo destroyElement(veiculo) -- destroi o veiculo end end addEventHandler("onMarkerHit", markerDestroy, DestruirVeiculoMarker) 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