Jump to content

dxDrawText en un player?


lLinux

Recommended Posts

Bueno estoy haciendo un script en el cual por medio de una comando aparece un texto en el player.

el problema es que el texto aparece a la altura de la cintura del player o ped, necesito que quede arriba de la cabeza, que puedo hacer?

function text() 
    local px, py, pz = getElementPosition(getLocalPlayer()) 
    local sx, sy = getScreenFromWorldPosition(px, py, pz) 
    local cx, cy, cz = getCameraMatrix() 
     
    if sx then 
        if getDistanceBetweenPoints3D(cx, cy, cz, px, py, pz) <= maxdistancia then 
            dxDrawText("PASIVO",sx,sy,pantalla_x, pantalla_y,tocolor ( 255, 255, 255, 255 ), 1,"default-bold") 
        end 
    end 
end 

Link to comment
function text() 
    local px, py, pz = getPedBonePosition(localPlayer) 
    local sx, sy = getScreenFromWorldPosition(px, py, pz) 
    local cx, cy, cz = getCameraMatrix() 
    
    if sx then 
        if getDistanceBetweenPoints3D(cx, cy, cz, px, py, pz) <= maxdistancia then 
            dxDrawText("PASIVO",sx,sy,pantalla_x, pantalla_y,tocolor ( 255, 255, 255, 255 ), 1,"default-bold") 
        end 
    end 
end 

Link to comment
  • Recently Browsing   0 members

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