AR/isChatVisible

From Multi Theft Auto: Wiki
Revision as of 19:09, 28 September 2024 by Prox (talk | contribs) (should works with all game versions)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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