IsChatInputBlocked: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
{{Client function}} | {{Client function}} | ||
__NOTOC__ | __NOTOC__ | ||
{{Added feature/item | {{Added feature/item|1.5.9|1.5.8|20898|This function checks if the player's chat input is blocked.}} | ||
==Syntax== | ==Syntax== |
Revision as of 20:51, 23 September 2021
This function checks if the player's chat input is blocked.
Syntax
bool isChatInputBlocked ( )
Returns
Returns true if the chat input is blocked, false otherwise.
Example
This example shows how to block and unblock the chat input:
function toggleInputBlocked () local visible = isChatVisible () -- check if the chat is visible showChat (visible, not isChatInputBlocked ()) -- toggle inputBlocked end addCommandHandler("blockchat", toggleInputBlocked)
Requirements
This template will be deleted.
See Also
- clearDebugBox
- isChatInputBlocked
- isChatVisible
- Shared
- clearChatBox
- outputChatBox
- outputConsole
- outputDebugString
- showChat