function imAtHoodCar(id, handle)
local DISTANCE = 1
local x1, y1, z1, x2, y2, z2 = getModelDimensions(id)
local corner1X,corner1Y,corner1Z = getOffsetFromCarInWorldCoords(handle, x1 , y1 * -1.1, z1)
local corner2X,corner2Y,corner2Z = getOffsetFromCarInWorldCoords(handle, x1 * -1.0 , y1 * -1.1, z1)
local x,y,z = getCharCoordinates(PLAYER_PED)
return getDistanceBetweenCoords3d(x,y,z, corner1X,corner1Y,corner1Z) <= DISTANCE and getDistanceBetweenCoords3d(x,y,z, corner2X,corner2Y,corner2Z) <= DISTANCE
end
while true do wait(0)
for _,veh in pairs(getAllVehicles()) do
if doesVehicleExist(veh) and imAtHoodCar(select(2, sampGetVehicleIdByCarHandle(veh)), veh) then
sampAddChatMessage('я у капота машины')
end
end
end