Impala.tr Posted April 1, 2016 Share Posted April 1, 2016 Hey guys im Impala , I need it " Minimized the game(date) " Please.. Thanks..! Link to comment
Noki Posted April 3, 2016 Share Posted April 3, 2016 onClientMinimize The Lua tags only work for functions, not events. You will need to use onClientMinimize to detect minimization. And you will need to use onClientRestore to detect when a client restores their screen. The following outputs in the chat box what time you minimized the screen. addEventHandler("onClientMinimize", root, function () local t = getRealTime() outputChatBox("You minimized your screen at "..t.hour..":"..t.minute) end ) 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