Jump to content

Como tirar cores dos nomes no scoreboard e aparecer a country do jogador ?


Recommended Posts

Para remover a cor você vai usar a função:

function removeHex (s)
	if type (s) == "string" then
		while (s ~= s:gsub ("#%x%x%x%x%x%x", "")) do
			s = s:gsub ("#%x%x%x%x%x%x", "")
		end
	end
	return s or false
end

 

Para colocar a bandeira do país você seta ela quando ele logar. dai é só criar o dxDrawImage com o elementData

function showcountry() 
	local flag = exports.admin:getPlayerCountry ( source ) 
	if flag then 
		setElementData(source,"Home",":admin/client/images/flags/"..flag..".png") 
	else 
		flag = "N/A" 
	end 
end 
addEventHandler("onPlayerJoin",getRootElement(),showcountry) 

 

  • Thanks 1
Link to comment
4 hours ago, Tommy. said:

Para remover a cor você vai usar a função:


function removeHex (s)
	if type (s) == "string" then
		while (s ~= s:gsub ("#%x%x%x%x%x%x", "")) do
			s = s:gsub ("#%x%x%x%x%x%x", "")
		end
	end
	return s or false
end

 

Para colocar a bandeira do país você seta ela quando ele logar. dai é só criar o dxDrawImage com o elementData


function showcountry() 
	local flag = exports.admin:getPlayerCountry ( source ) 
	if flag then 
		setElementData(source,"Home",":admin/client/images/flags/"..flag..".png") 
	else 
		flag = "N/A" 
	end 
end 
addEventHandler("onPlayerJoin",getRootElement(),showcountry) 

 

Já tentei com essa função ai Tommy, e sobre a bandeira só n tava aparecendo porque eu tava no servidor local rs

2 hours ago, DNL291 said:

Vlw mano ❤️

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