View Single Post
  #2  
Old 06-02-2017, 06:29 PM
Kingly_Krab
Administrator
 
Join Date: May 2013
Location: United States
Posts: 1,589
Default

I use the following query to check for players online in the last 15 minutes.
Code:
SELECT * FROM `character_data` WHERE `last_login` >= (UNIX_TIMESTAMP() - 900) ORDER BY `name` ASC
I also have it in a web page:

Last edited by Kingly_Krab; 06-02-2017 at 06:38 PM..
Reply With Quote