Requesting Removal

@KrizFrost can u edit that to be like nopixel chat?

Is it possible to disable /anontweet ?

Someone that can help met out of this.

When some typ /tweet he needs to get a message (only for that player that uses /tweet.)

Message:
/tweet is disabled use your phone

how do I change the animation that goes alongside her and not behind her thanky you

I setted up on my server but the whole script is buggy. I can’t able to tweet and etc.

how i can change this template to all my commands like /restart (script)? i wanna use this template for all my commands.

did you ever find the fix to this issue?

Amazing my friend, thank you very much for this release.

How can I prevent sending empty messages?

how can i change the chat background from this grey to transparent?

How can i add chat roles in this script?

Already upload it, but why the display looks different from u guys have.
My log chat has not a logo and looks like an old type

Does anyone know how to add message proximity?

RegisterCommand('me', function(source, args, rawCommand)
    local playerName = GetPlayerName(source)
    local msg = rawCommand:sub(3)
    local name = getIdentity(source)
    fal = name.firstname .. " " .. name.lastname
    TriggerClientEvent('chat:addMessage', -1, {
        template = '<div style="padding: 0.5vw;  margin: 0.5vw; background-color: rgba(76, 193, 42, 0.6); border-radius: 3px;"><i class="fas fa-comment-dots"> <i><b><font size="2" color="#FFFF00">{0}:</font></b></i>&ensp;<b><i><font >{1}</font></i></b></div>',
        args = { fal, msg }
    })
end, false)

I want this command to be visible only to the people around me, but when I try to place sendProximityMessageMe I receive an error. please help

1 Like

Your missing font awesome.

Regarding Chat background
You have to manually remove it yourself.

How can i change in ooc chat names to steam id not in character name

can you send me the css?

how can add chat roles? like only police can do /police if not police can’t do the /police or else saying that you are you not police to do it.

someone added / me and / do?

How to set distance a chat ? Max 10 meter ?

 RegisterCommand('me', function(source, args, rawCommand)
    local playerName = GetPlayerName(source)
    local msg = rawCommand:sub(4)
    local name = getIdentity(source)
    fal = name.firstname .. " " .. name.lastname
    TriggerClientEvent('chat:addMessage', -1, {
        template = '<div style="padding: 0.5vw; margin: 0.5vw; background-color: rgba(5, 117, 139, 0.5); border-radius: 3px;"><i class="fas fa-user-circle"></i> {0}<br> {1}<br></div>',
        args = { fal, msg }
    })

end, false)