PDA

View Full Version : Can anyone?


Li_Icekiller
27-07-2004, 12:02
Im asking some help of some good php scripters out there...

Im looking for a small TS2 block to put on my clan website.

As in simple i mean:

Player1
Player2

2 / 16 online
^ ^-- Max Players
Current players

If anyone could possibly script this, i would be VERY thankfull!!!

Sanji01
27-07-2004, 17:28
Im asking some help of some good php scripters out there...

Im looking for a small TS2 block to put on my clan website.

As in simple i mean:

Player1
Player2

2 / 16 online
^ ^-- Max Players
Current players

If anyone could possibly script this, i would be VERY thankfull!!!

like this one? http://www.gcs-clan.de/small.php :)

download my class at http://www.gcs-clan.de/download/ts2/0.5.4.rar
and use ths file class.ts2.inc.php and this code:

<?PHP
require_once("class.ts2.inc.php");

$ts2 = new TS2;
$ts2->connect("localhost","51234","xxx","xxx","8767",LOGIN_GUEST);
if (!$ts2->link) {
$ts2->_error("No Connection!");
}

$ts2->_get_players(); //get players in cache

$tmp = $ts2->get_players();

foreach ($tmp as $pl) {
echo $pl[14]."<BR>";
}

$ts2->_get_serverinfo();
echo "<BR>".count($tmp)."/".$ts2->get_svar("server_maxusers")."<BR>";

$ts2->logout();
?>

Li_Icekiller
27-07-2004, 18:49
Perfect!!! THANKS HEAPS :D

Wub!!! =)