IsChatInputBlocked: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
(Remove obsolete Requirements section)
 
Line 21: Line 21:
addCommandHandler("blockchat", toggleInputBlocked)
addCommandHandler("blockchat", toggleInputBlocked)
</syntaxhighlight>
</syntaxhighlight>
==Requirements==
{{Requirements|n/a|1.5.8-9.20898}}


==See Also==
==See Also==
{{Client_output_functions}}
{{Client_output_functions}}

Latest revision as of 17:29, 7 November 2024

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)

See Also