C4mpN~ Posted March 11, 2018 Share Posted March 11, 2018 bom meu erro e o seguinte eu fiz uma simples barra de vida mais estou com um erro .... por exemplo eu seto a vida em um valor ex:55 até ai tudo bem Mais a barra de vida só desce quando eu dou restart no resource aqui esta o script : local x,y = guiGetScreenSize() local vida = math.floor(getElementHealth(getLocalPlayer())) function zHUD() dxDrawRectangle ( x/3.2, y/3.2, x/5.02/100*vida, y/14, tocolor ( 255, 0, 0, 155 ) ) end addEventHandler("onClientRender", root, zHUD) espero que possam me ajudar muito obrigado !!!!!!! Link to comment
pz1 Posted March 11, 2018 Share Posted March 11, 2018 Dessa forma irá funcionar, tentei usar a sua barra mas não funcionou, recomendo usar valores absolutos ao criar interfaces. local screenW, screenH = guiGetScreenSize() local x, y = (screenW/1280), (screenH/800)--(screenW/Sua Relosução de Largura), (screenH/Sua Resolução de Altura) function zHUD() local vida = math.floor(getElementHealth(getLocalPlayer())) dxDrawRectangle(x*401, y*250, x*255/100*vida, y*57, tocolor(255, 255, 255, 255), false)--VALOR ABSOLUTO --dxDrawRectangle ( x*3.2, y*3.2, x*5.02/100*vida, y*14, tocolor ( 255, 0, 0, 155 ), false )--VALOR DESCONHECIDO end addEventHandler("onClientRender", root, zHUD) 1 Link to comment
C4mpN~ Posted March 11, 2018 Author Share Posted March 11, 2018 Muito Obrigado Amigo De Verdade Estava muito estressado a isso Link to comment
#RooTs Posted March 11, 2018 Share Posted March 11, 2018 Amigo não crie mais topicos repetidos com o mesmo assunto e conteudo, por favor!. Obrigado Link to comment
C4mpN~ Posted March 11, 2018 Author Share Posted March 11, 2018 Me Desculpe foi porque eu fiz o topico na area errada .. mesmo assim obrigado Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now