OnClientMinimize

From Multi Theft Auto: Wiki
Revision as of 02:08, 24 August 2011 by MX Master (talk | contribs) (example's typo fix)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

This event is triggered when the local player minimizes the game screen.

Parameters

None

Example

This example kills any player who minimizes the game.

function handleMinimize()
    setElementHealth( localPlayer, 0 )
end
addEventHandler( "onClientMinimize", root, handleMinimize )

See Also

Other client events


Client event functions