Daniel Reis Posted May 3, 2018 Posted May 3, 2018 Alguem sabe como coloca a barrinha de pesquisar o nome do player em PAINEL?
Other Languages Moderators Lord Henry Posted May 3, 2018 Other Languages Moderators Posted May 3, 2018 Se for em painel GUI, use guiCreateEdit. Para fazer a função de procura, use essa função: addEventHandler("onClientGUIClick", getRootElement(), function (btn) if btn ~= "left" then return end if source == searchBox then -- Função que busca os jogadores pela barra de pesquisa chamada searchBox. guiGridListClear(gridJogadores) -- Lista que mostra a lista dos jogadores encontrados. local Nome = guiGetText (searchBox) for i, thePlayer in ipairs (getElementsByType ("player")) do if (thePlayer ~= localPlayer) then if (string.find(getPlayerName(thePlayer):lower(), Nome:lower())) then local row = guiGridListAddRow (gridJogadores) guiGridListSetItemText (gridJogadores, row, 1, getPlayerName(thePlayer), false, false) end end end end end)
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