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