Jump to content

Ajuda para fechar e abrir por bind


Recommended Posts

8 hours ago, Nakka Lindo said:
local playerList = guiCreateGridList(0.80, 0.40, 0.15, 0.35, true)
guiGridListAddColumn(playerList, "Player", 0.85)

for _, player in ipairs(getElementsByType("player")) do
	guiGridListAddRow(playerList, getPlayerName(player))
end

 

Qual é sua duvida? quer um abrir um painel apertando k por exemplo?

( Usando bindKey ) 

bindKey( "k", "down", function( ) -- Cria função
    if ( guiGetVisible ( PainelGUI ) == false ) then -- Verifica se o painel esta fechado
        guiSetVisible( PainelGUI, true ) -- Mostra o painel
        showCursor( true ) -- Ativa o cursor
    else -- Se não estiver fechado, então:
        guiSetVisible( PainelGUI, false ) -- Tira o painel
        showCursor( false ) --Desativa o cursor
    end
end)

 

Link to comment
On 30/03/2023 at 12:20, FelipeX said:

Qual é sua dúvida? quer um abrir um painel apertando k por exemplo?

(usando  bindKey  ) 

     
                
           
    

 

Era isso mesmo obrigado.

On 30/03/2023 at 10:02, Lord Henry said:

Tópico movido para a seção de Programação Lua.

Na próxima vez, poste na área correta.

Vou postar no correto na proxima.

Link to comment
Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

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