MrBugsFive Posted February 24, 2015 Share Posted February 24, 2015 Olá Todos, Eu queria uma Ajuda para Fazer um System que aparecer uma imgem: quando tiver quase acabando a bala no pente Exemplo: to com 5/100 Ammo ai para aparece essa imagem: ou essa: e Quando Aperta R a Imagem Some ! Será q tem como fazer isso ?? PorFavor me Ajudem :'( ! Muito Obrigado ! Link to comment
Banex Posted February 24, 2015 Share Posted February 24, 2015 local weaponsEnabled = {[30] = true, [31] = true} function draw() if weaponsEnabled[getPedWeapon(localPlayer)] and getPedAmmoInClip(localPlayer) =< 10 then --dxDrawImage() end end addEventHandler("onClientRender", root, draw) Link to comment
MrBugsFive Posted February 25, 2015 Author Share Posted February 25, 2015 local weaponsEnabled = {[30] = true, [31] = true} function draw() if weaponsEnabled[getPedWeapon(localPlayer)] and getPedAmmoInClip(localPlayer) =< 10 then --dxDrawImage() end end addEventHandler("onClientRender", root, draw) ainda nao funcionou ! mais nao vou desisitir ! local weaponsEnabled = {[30] = true, [31] = true, [28] = true, [29] = true, [32] = true, [22] = true, [23] = true, [24] = true} function draw() if weaponsEnabled[getPedWeapon(localPlayer)] and getPedAmmoInClip(localPlayer) =< 10 then --dxDrawImage() dxDrawImage(623, 244, 128, 80, "items.png", 0, 0, 0, tocolor(255, 255, 255, 255), false) end end addEventHandler("onClientRender", root, draw) Link to comment
Banex Posted February 25, 2015 Share Posted February 25, 2015 Mostre o seu meta, e qualquer erro que encontrar usando /debugscript 3 Link to comment
DNL291 Posted February 25, 2015 Share Posted February 25, 2015 addEventHandler --> "onClientRender" getPedWeapon getPedTotalAmmo getPedAmmoInClip dxDrawImage Sobre o recarregamento da arma, acho melhor modificar o recurso reload e chamar um evento personalizado quando recarregar a arma. Então, use tal evento nesse script para definir uma variável para ser usada num if statement em que será mostrada a imagem de acordo com essa condição. Link to comment
MrBugsFive Posted February 26, 2015 Author Share Posted February 26, 2015 [lua=meta.xml] [/lua] To Editanto com Reload junto ja ! vou dar uma pausa nesse script e vou continuar, a terminar umas coisa q ta fazendo antres decomeça com esse scripts ! Link to comment
DNL291 Posted February 26, 2015 Share Posted February 26, 2015 Ok. Mostre o código que você está tentando, assim que puder. 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