لا عادي
دا مثال يوضح
setTimer(
function( )
local vehX , vehY , vehZ = -- احداثيات السيارة
local endX , endY , endZ = -- احداثيان مكان الوقوف
local distance = getDistanceBetweenPoints3D( vehX , vehY , vehZ , endX , endY , endZ )
if( math.floor( distance ) < 3 ) then
-- كمل اكواد ايقاف السيارة
end
end
)