Jump to content

CHAT ANONIMO


Recommended Posts

Olá, Gostaria de saber como faço para somente staff's poder ver os nomes dos jogadores no chat anonimo, assim o staff poderá punir o jogador que está ofendendo outros

 

---Nome dos Chats
chat1 = "Twitter" -- Nome Livre
chat2 = "Anônimo" -- Nome oculto
chat3 = "Fora RP" -- Nome Livre
chat4 = "Local" -- Nome Livre


---------TWITTER


function MensagemTwitter(source, cmd, ...) 
    local MessagemT = table.concat ( { ... }, " " )
    local name = getPlayerName(source); 
for _,v in ipairs(getElementsByType("player")) do 
    outputChatBox("#00BFFF[ "..chat1.." ]#FFFFFF "..name.." #FFFFFF: #00BFFF"..MessagemT,v, 255, 255, 255, true) --efeito no chat
    end 
end 
addCommandHandler("twitter",  MensagemTwitter)
addCommandHandler("Twitter",  MensagemTwitter)
addCommandHandler("TWITTER",  MensagemTwitter)
  





-------------Anonimo


function MensagemAnon(source, cmd, ...) 
    local MessagemANS = table.concat ( { ... }, " " ); 
for _,v in ipairs(getElementsByType("player")) do 
    outputChatBox("#000000[ #000000"..chat2.."#000000 ] #000000"..MessagemANS,v, 255, 255, 255, true)  --efeito no chat
    end 
end 
addCommandHandler("ilegal",  MensagemAnon)
addCommandHandler("Ilegal",  MensagemAnon)
addCommandHandler("ILEGAL",  MensagemAnon)
  



----------------Fora do RP


function MensagemRP(source, cmd, ...) 
    local MessagemFRP = table.concat ( { ... }, " " ); 
    local name = getPlayerName(source); 
for _,v in ipairs(getElementsByType("player")) do 
    outputChatBox("#FB0000[ #ffffff"..chat3.."#FB0000 ] "..name.." #ffffff"..MessagemFRP,v, 255, 255, 255, true) --efeito no chat
    end 
end 
addCommandHandler("forarp",  MensagemRP)
addCommandHandler("Forarp",  MensagemRP)
addCommandHandler("FORARP",  MensagemRP)






 

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