Ir para conteúdo
  • 0

$hover icon?


Noninhouh

Pergunta

Existe alguma função para o .lua ou para o .otui que funcione como o $hover?

tipo, eu to querendo que qd passe o mouse por cima a opacity seja 1.0 , e qd n esteja com o mouse em cima, a opacity seja 0.7

Link para o comentário
Compartilhar em outros sites

7 respostass a esta questão

Posts Recomendados

  • 0

n foi =/

 

fiz tipo assim:

 

if hovered then

audioButton:setOpacity(1.0)

else

audioButton:setOpacity(0.8)

end

 

Editado por Noninhouh
Link para o comentário
Compartilhar em outros sites

  • 0

No int Adiciona :

  connect(LocalPlayer, { onHoverChange = onHoverChange })

 

e depois cria a função

 

 

function onHoverChange(hovered)
 if hovered..
end

Editado por BananaFight
Link para o comentário
Compartilhar em outros sites

  • 0

banana, n foi tb =/

 

eu colokei assim:

 

function onHoverChange(hovered)

if hovered then

healthInfoButton:setOpacity(1.0)

else

healthInfoButton:setOpacity(0.8)

end

end

 

 

E colokei \/ no init e no terminate

onHoverChange = onHoverChange
Link para o comentário
Compartilhar em outros sites

  • 0

connect(UIItem, { onHoverChange = BotModule.checkItem })

 

function BotModule.checkItem(widget, hovered)
 if not CandyBot.isEnabled() then
return
 end

 local widget = widget or g_ui.getHoveredWidget()
 if not widget then
g_tooltip.hide()
return
 end
 if hovered == nil then
hovered = true
 end

 local item = widget:getItem()
 if item and hovered and g_keyboard.isKeyPressed('Insert') then
BotModule.showItemInfo(item)
 else
g_tooltip.hide()
 end
end

 

quer um concelho? baixa o notepad++ e começa a usar a opçao Localizar/Localizar em Arquivos ... :p

Editado por Slicer
Link para o comentário
Compartilhar em outros sites

Visitante
Este tópico está impedido de receber novos posts.
×
×
  • Criar Novo...