Jump to content

Nicks invisiveis em players


Recommended Posts

Tem ums carinhas que usam nome invisivel no meu servidor eu queria saber se existe algum resource que não permite que ele troque o nome pra #000000 ou #FFFFFF pra não ficar invisivel no tab

 

Tipo um mod pra não permitir que pessoas usem #000000 ou Qualquer cor sem uma letra no final

 

Obrigado a todos que me ajudarem com esse probleminha ❤️

Link to comment
addEventHandler("onPlayerChangeNick", root,
    function(_, nick)
        if (removeHex(nick):len() == 0) then
            outputChatBox("Nick inválido!", source, 255, 0, 0)
            cancelEvent(true)
        end
    end
)
addEventHandler("onPlayerConnect", root,
    function(nick)
        if (removeHex(nick):len() == 0) then
            cancelEvent(true, "Nick inválido!")
        end
    end
)

function removeHex(str)
    while(str:find("#%x%x%x%x%x%x")) do
        str = str:gsub("#%x%x%x%x%x%x","")
    end
    return str
end

 

Edited by [M]ister
  • Like 1
Link to comment
  • 2 years later...

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