IsChatVisible: Difference between revisions
Jump to navigation
Jump to search
(Created page with "{{Client function}} __NOTOC__ {{New items|4.0132|1.4| This function checks if player's chat is visible. }} ==Syntax== <syntaxhighlight lang="lua"> bool isChatVisible ( ) </syntaxhighlight> ===Return...") |
mNo edit summary |
||
Line 22: | Line 22: | ||
==See Also== | ==See Also== | ||
{{ | {{Client_output_functions}} |
Revision as of 22:01, 13 May 2014
Syntax
bool isChatVisible ( )
Returns
Returns true if the chat is visible, false otherwise.
Example
This example does the same thing as showchat command does.
addCommandHandler("sc", function () showChat(not isChatVisible()) end)
See Also
- clearDebugBox
- isChatInputBlocked
- isChatVisible
- Shared
- clearChatBox
- outputChatBox
- outputConsole
- outputDebugString
- showChat