Jump to content

Problema com setVehicleDamageProof


Recommended Posts

Sou iniciante em lua e estou tentando criar um script que faça com que quando o player esteja no "ModoPassivo" e pegue um veículo, o veículo dele fique blindado, e quando ele saia do "ModoPassivo" o veículo fique normal. Acontece que simplesmente não funciona. Alguem poderia me ajudar apontando onde errei ou algo do tipo?

Server:

function test47 (thePlayer)
	if getElementData ( thePlayer, "ModoPassivo" ) == true then
	    local theVehicle = getPedOccupiedVehicle (thePlayer)
        if theVehicle and isElement (theVehicle) then
		setVehicleDamageProof (theVehicle, true)
    else
	    setVehicleDamageProof (theVehicle, false)
        end
	end
end

 

Link to comment
addEventHandler("onVehicleEnter",root,function(thePlayer)
    if getElementData(thePlayer,"ModoPassivo") == true then
        setVehicleDamageProof(source,true)
    else
        setVehicleDamageProof(source,false)
    end
end)
-- NÃO SE ESQUEÇA DE QUANDO ELE SAIR DO MODO PASSIVO, TIRAR A BLINDAGEM DO VEICULO !! 

TENTE ISSO :)

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