papam77 Posted July 26, 2013 Share Posted July 26, 2013 Hello is possible to make if player has minimalized MTA in windows to get it, because i need it for state to scoreboard Link to comment
codeluaeveryday Posted July 26, 2013 Share Posted July 26, 2013 Use onClientMinimize and onClientRestore Please read the wiki before asking... local scoreboardColumn = 'status' addEventHandler('onClientMinimize', getRootElement(), function() setElementData(localPlayer, scoreboardColumn, 'AFK') end ) addEventHandler('onClientRestore', getRootElement(), function() setElementData(localPlayer, scoreboardColumn, 'Active') end ) Link to comment
codeluaeveryday Posted July 26, 2013 Share Posted July 26, 2013 Your welcome kind stranger. Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now