Kapricioza Posted October 3, 2018 Share Posted October 3, 2018 Hi, i'm looking for best solution to create timer, who is starting always when player is logging and stoping when he's leaving. I tried with this: function timeout() { setTimeout(function () { //something to do timeout(); }, 10000); } timeout(); But i don't know how to stop this timer's function. It's of course via server-side but how can I create timer for each players? I wanna do something for player when he's long enough time on the server in the same session. Link to comment Share on other sites More sharing options...
Xabi Posted October 3, 2018 Share Posted October 3, 2018 Can't you just store the timestamp when the user logs into the server and compare to the timestamp when he leaves the server? 1 Link to comment Share on other sites More sharing options...
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