4Metin Posted May 29, 2013 Report Share Posted May 29, 2013 Hola a todos queria saber si alguien sabe como puedo hacer para poner en los nombres del ranking al lado de un numbre cuando este conectado que se le ponga una bolita verde. Gracias y espero respuestas! Link to comment Share on other sites More sharing options...
Shogun Posted May 29, 2013 Report Share Posted May 29, 2013 Esta es la función que hice para comprobar si alguien está on, espero que te sirva. function isonline($character_id) { connectdb("server1","log"); $query = mysql_query("SELECT how FROM log WHERE who = ".$character_id." ORDER BY time DESC LIMIT 1"); $result=mysql_fetch_array($query); if($result['how'] != "LOGOUT" && $result['how'] != "" && $result['how'] != "CREATE PLAYER") { return true; } else { return false; } } Link to comment Share on other sites More sharing options...
4Metin Posted May 29, 2013 Author Report Share Posted May 29, 2013 vale intentare aver gracias Link to comment Share on other sites More sharing options...
TheSanto Posted May 29, 2013 Report Share Posted May 29, 2013 ami no me funciona. Link to comment Share on other sites More sharing options...
Recommended Posts