Jump to content

Recommended Posts

  • Other Languages Moderators

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)

 

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...