Jump to content

-_-


Recommended Posts

طبعاً محد راضي يساعدني في هالكود

 


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
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
  • N3xT locked this topic
Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...