addEventHandler("onVehicleEnter", getRootElement(), function()
if (getElementModel(source) == 585) then
setVehicleDamageProof(source, true)
end
end)
addEventHandler("onVehicleExit", getRootElement(), function()
if (getElementModel(source) == 585) then
setVehicleDamageProof(source, false)
end
end)