isChatVisible | Multi Theft Auto: Wiki Skip to content

isChatVisible

Client-side
Server-side
Shared

This page is incomplete! Help wanted!

Please finish this page using the corresponding Old Wiki article.
Go to Contribution guidelines for more information.


This function checks if player's chat is visible.

Syntax

isChatVisible ( )

Code Examples

client

This example does the same thing asshowchatcommand does.

addCommandHandler("sc",
function ()
showChat(not isChatVisible())
end)