Jump to content

Voz hud


Recommended Posts

alguem consegue me ajudar a colocar 3 cores nesse script/ tipo o (ID) branco o Voz ligada em verde e o Voz Desligada em vermelho e o   FPS 70 - Branco
           
        dxDrawText(""..ID.." - VOZ ATIVADA - FPS: 70 -", x*1600, y*752, x*1193, y*775, tocolor(155), 1.00, "default", "right", "top", false, false, false, false, false)
        else
        dxDrawText(""..ID.." - VOZ DESLIGADA - FPS: 70 -", x*1600, y*752, x*1193, y*775, tocolor(155), 1.00, "default", "right", "top", false, false, false, false, false)

Link to comment

Olá @ton1nho, seja bem vindo!

Movi seu tópico para a seção de Programação em Português do fórum para que você possa obter uma melhor assistência em seu idioma nativo. Lembre-se de sempre escrever em Inglês ao postar fora desta seção.

Edited by Vampire
Typo
Link to comment

E aí @ton1nho, perceba que no argumento para mudar a cor do retângulo, você colocou apenas  tocolor(155) sendo que o tocolor pede 3 argumentos obrigatórios, sendo eles (r, g, b), para quando a voz ficar ativada ficar verde, deverá ficar assim:

dxDrawText(""..ID.." - VOZ ATIVADA - FPS: 70 -", x*1600, y*752, x*1193, y*775, tocolor(0, 255, 0), 1.00, "default", "right", "top", false, false, false, false, false)

E para ficar vermelha quando desativada:

 dxDrawText(""..ID.." - VOZ DESLIGADA - FPS: 70 -", x*1600, y*752, x*1193, y*775, tocolor(255, 0, 0), 1.00, "default", "right", "top", false, false, false, false, false)

 

Link to comment
  • Other Languages Moderators

Se você olhar a Wiki do DxDrawText, vai perceber que existe o parâmetro colorCoded. Coloque-o como true e então você pode usar códigos #HEX no seu texto da mesma forma que usaria em um outputchatbox.

    dxDrawText(ID.." -#00FF00 VOZ ATIVADA #FFFFFF- FPS: 70 -", x*1600, y*752, x*1193, y*775, tocolor(255, 255, 255), 1, "default", "right", "top", false, false, false, true, false)
else
    dxDrawText(ID.." -#FF0000 VOZ DESLIGADA #FFFFFF- FPS: 70 -", x*1600, y*752, x*1193, y*775, tocolor(255, 255, 255), 1, "default", "right", "top", false, false, false, true, false)

 

Edited by Lord Henry
  • Like 1
Link to comment

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

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