Jump to content

Necesito Ayuda con Esto


#Raiden

Recommended Posts

Hola, soy nuevo aqui , y he tratado de hacer que con un drawText te diga Los Kills player que llevas, he tratado por un mes de como hacer esto pero solo logroo hacer que te muestren las kills pero no se cuenten cada vez que Matas a un jugador, tengo que reiniciar el script para que asi cuente las kill

local kills = getElementData(getLocalPlayer(),"Kills") 
local death = getElementData(getLocalPlayer(),"Deaths") 
   
function showHome () 
  
    dxDrawText("Kills Player: "..tostring(kills).."", 398, 302, 465, 331, tocolor(255, 255, 255, 255), 1.00, "default", "left", "top", false, false, false, false, false) 
    dxDrawText("Muertes: "..tostring(death).."", 398, 329, 465, 358, tocolor(255, 255, 255, 255), 1.00, "default", "left", "top", false, false, false, false, false) 
end 
addEventHandler("onClientRender", root,showHome) 

Por favor si me pueden ayudar, se los agradeceria ^^.

Link to comment

 Es por que solo llamas a esos datos cuando inicias el script por lo tanto tendrás que reiniciar para que lo vuelva a tomar

para lo que tu quieres puedes hacerlo de esta forma

function showHome () 
    local kills =getElementData(getLocalPlayer(),"Kills") 
    local death = getElementData(getLocalPlayer(),"Deaths") 
    dxDrawText("Kills Player: "..tostring(kills).."", 398, 302, 465, 331, tocolor(255, 255, 255, 255), 1.00, "default", "left", "top", false, false, false, false, false) 
    dxDrawText("Muertes: "..tostring(death).."", 398, 329, 465, 358, tocolor(255, 255, 255, 255), 1.00, "default", "left", "top", false, false, false, false, false) 
 end 
addEventHandler("onClientRender", root,showHome) 

Link to comment
  • Recently Browsing   0 members

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