AR/isChatVisible: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
(Created page with "{{Client function}} __NOTOC__ {{New items|4.0132|1.4| هذه الوظيفة تستخدم للتحقق ان الشات ظاهر. }} ==Syntax== <syntaxhighlight lang="lua"> bool isChatVisible...")
 
m (should works with all game versions)
 
(One intermediate revision by one other user not shown)
(No difference)

Latest revision as of 19:09, 28 September 2024

ADDED/UPDATED IN VERSION 1.4 :

هذه الوظيفة تستخدم للتحقق ان الشات ظاهر.

Syntax

bool isChatVisible ( )

Returns

Returns true if the chat is visible, false otherwise.

Example

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

See Also