I would love to know where the best person in the world went (Richard!) he always reply's to threads and updates his blog and I can't find any recent posts from him any where I just upgraded to joomla 1.6 and would sucks if he doesn't upgrade it because it's and awesome component to my site. I have seen 4 of my favorite components die on me and I don't want another one to die come back Richard!!! tell us how we can help.
Posts: 1 Joined: Thu Jan 05 2012, 08:59AM Registered Member #7061
This is the game of Boomerang. I love it. But it is hard process to complete. Whatever I have discover a process to play it.... Thanks call of duty cheats.
Posts: 32 Joined: Sat Sep 08 2012, 05:20PM Registered Member #7384
Vinceultras wrote ... Will you post the file for black ops?
My script works only with RCON. Another way to retrieve information from the server BO unknown to me. RCON requires a password and know it can only the admin of this server. If you are not Admin, my code will not help you. I am a technical administrator of the game portal http://shooter.vit.net.ua, so I have access to passwords http://shooter.vit.net.ua
Posts: 32 Joined: Sat Sep 08 2012, 05:20PM Registered Member #7384
Some changes in the method of reading data from a socket. A more correct approach is to read the small portions, waiting until the end of the data. Working code:
$rconPassword = "bla-bla-bla";
$query = "\xFF\xFF\xFF\xFF\x00" . $rconPassword . " serverinfo";
fwrite($lgsl_fp, $query);
$serverinfo = '';
while (!feof($lgsl_fp)) { //loop executes until you recived all data and terminated the connection
$s = fgets($lgsl_fp, 256); //Read data in chunks of 32 bytes, stopping at each line
if (!trim($s)) { //Interrupt cycle, if we see the empty string
} else { //otherwise display the received data chunk
$serverinfo .= $s;
}
}
Similarly get "teamstatus" http://shooter.vit.net.ua