IsChatVisible

From Multi Theft Auto: Wiki
Revision as of 09:28, 10 August 2014 by Roma ™ (talk | contribs)
Jump to navigation Jump to search

ADDED/UPDATED IN VERSION 1.4 :

This function checks if player's chat is visible.

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