+Source|> Posted April 7, 2019 Share Posted April 7, 2019 طبعاً محد راضي يساعدني في هالكود function dxDrawImageOnElement(TheElement,img,height,distance,R,G,B,alpha,size,font,checkBuildings,checkVehicles,checkPeds,checkDummies,seeThroughStuff,ignoreSomeObjectsForCamera,ignoredElement) local x, y, z = getElementPosition(TheElement) local x2, y2, z2 = getElementPosition(localPlayer) local distance = distance or 20 local height = height or 1 local checkBuildings = checkBuildings or true local checkVehicles = checkVehicles or false local checkPeds = checkPeds or false local checkObjects = checkObjects or true local checkDummies = checkDummies or true local seeThroughStuff = seeThroughStuff or false local ignoreSomeObjectsForCamera = ignoreSomeObjectsForCamera or false local ignoredElement = ignoredElement or nil if (isLineOfSightClear(x, y, z, x2, y2, z2, checkBuildings, checkVehicles, checkPeds , checkObjects,checkDummies,seeThroughStuff,ignoreSomeObjectsForCamera,ignoredElement)) then local sx, sy = getScreenFromWorldPosition(x, y, z+height) if(sx) and (sy) then local distanceBetweenPoints = getDistanceBetweenPoints3D(x, y, z, x2, y2, z2) if(distanceBetweenPoints < distance) then dxDrawImage( sx+1, sy+1, sx, sy, img, (size or 1.4)-(distanceBetweenPoints / distance), false ) end end end end -- الخطأ هنا dxDrawImage( sx+1, sy+1, sx, sy, img, (size or 1.4)-(distanceBetweenPoints / distance), false ) Link to comment
+Source|> Posted April 7, 2019 Author Share Posted April 7, 2019 29 minutes ago, Abdul KariM said: وريني كيف استخدمت الكود setTimer ( function( ) for i, v in ipairs ( getElementsByType( "player" ) ) do if ( getElementData ( v , "E1" ) == true ) then dxDrawImageOnElement( v, "EM1.png" ) elseif ( getElementData ( v , "E2" ) == true ) then dxDrawImageOnElement( v, "EM2.png" ) end end end, 100, 0 ) Link to comment
+Source|> Posted April 7, 2019 Author Share Posted April 7, 2019 53 minutes ago, Abdul KariM said: وريني كيف استخدمت الكود تم الحل خلاص Link to comment
N3xT Posted April 7, 2019 Share Posted April 7, 2019 أتمنى المرة الجاية تستخدم عنوان مناسب لموضوعك يغلق 1 Link to comment
Recommended Posts