Предположу, что так. Код не тестировал.
function isPedRotationToPoint( el, px, py, pz, accuracy ) -- назовите функцию сами
if type( el ) == 'userdata' and isElement( el ) and type( px ) == 'number' and type( py ) == 'number' and type( pz ) == 'number' then
local x, y, z, = getElementPosition ( el )
local rotalion = ( 360 - math.deg ( math.atan2 ( ( x - px ), ( y - py ) ) ) ) % 360
local _, _, currentRotation = getElementRotation( el )
return math.abs( currentRotation - rotation ) < accuracy and true or false
end
return false
end