IsMainMenuActive: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
Line 12: Line 12:


==Example==  
==Example==  
This example does...
This example check if the player is afk.
<syntaxhighlight lang="lua">
<syntaxhighlight lang="lua">
function isLocalPlayerActive ()
function isLocalPlayerActive ()

Revision as of 00:08, 21 February 2010

This function returns whether the user is in the mainmenu or not.

Syntax

bool isMainMenuActive ()

Returns

Returns true if the mainmenu is visible, false if not.

Example

This example check if the player is afk.

function isLocalPlayerActive ()
   if isMainMenuActive() then
      setElementData(getLocalPlayer(),"status","afk")
   else
      setElementData(getLocalPlayer(),"status","playing")
   end
end

See Also

General functions

Browsers

Buttons

Checkboxes

Comboboxes

Edit Boxes

Gridlists

Memos

Progressbars

Radio Buttons

Scrollbars

Scrollpanes

Static Images

Tab Panels

Tabs

Text Labels

Windows