Jump to content
  • 0

need online script


Question

6 answers to this question

Recommended Posts

  • 0
Posted

Use search engine and perhaps you will find something, cause this already exists. Btw login is 2106 and game is 7777 you should find blackout gaming status, ofc how many ppl online require something more, but you can find it too.

  • 0
Posted

yes, i can find online status script but

 

i want this:

how many ppl online

 

i couldn't found that

 

p.s also i dont know how to set it

  • 0
Posted
<?php 

$ip = '172.16.192.3';        // IP game server 
$port = 7788;            // Port game server 
$time = 10;              // Time refresh chech online (sec) 
$cachefile = "/var/www/showmebigtits.com/htdocs/serverstat.txt";    // file cache online 

$fp = @fopen($cachefile,"r") or die('File ERROR'); 
$str_read = fread($fp, filesize($cachefile)); 
fclose($fp); 

list($lasttime, $current, $playing, $store, $max) = explode(":", $str_read); 

if (@fsockopen($ip,$port)!==NULL) { 

if(($lasttime + $time) < time()) 
{ 
    $fs = @fsockopen($ip,$port) or die('Sock ERROR'); 
    $pck = pack("vCi",6,0,-3); 
    fwrite($fs,$pck); 
    $r=fread($fs,73); 
    fclose($fs); 
    list($size, $id, $world, $max, $current, $playing, $store) = array_values(unpack("vsize/Cid/iworld/imax/icurrent/iplaying/istore",$r));

    $fp = @fopen($cachefile,"w") or die('File ERROR'); 
    fwrite($fp,time().":".$current.":".$playing.":".$store.":".$max); 
    fclose($fp); 
} 
} 
else 

$fp = @fopen($cachefile,"w") or die('File ERROR'); 
    fwrite($fp,time().":".0.":".0.":".0.":".0); 
    fclose($fp); 
echo "SYS: current({$current}), playing({$playing}), private store({$store}), max({$max})\n"; 
?>

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 account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..