Hi all,
I got this script already to retrieve some data frome et server:
<?php
$conne = fsockopen(‘udp://IP’,‘PORT’);
fwrite($conne, chr(255) . chr(255) . chr(255) . chr(255) . chr(0x02) . ‘getstatus’ . chr(0x00));
fread($conne, 4);
$status = socket_get_status($conne);
$data = fread($conne, $status[‘unread_bytes’]);
fclose($conne);
echo $data;
?>
But this shows only current users with ping,name and xp and further some standard info like:
Cvar Value
g_fixedphysicsfps 125
g_fixedphysics 0
mod_url http://shitstorm.org
mod_version 1.2.0
g_SBCheats 0
P 1313122312122121221223122311122102112112
g_maxlivesRespawnPenalty 0
voteFlags 4063167
g_balancedteams 1
g_maxGameClients 0
g_bluelimbotime 15000
g_redlimbotime 15000
gamename noquarter
jp_insanity 396
g_skills 18
g_tyranny 1
g_heavyWeaponRestriction 20
g_gametype 4
g_antilag 1
g_voteFlags 0
g_alliedmaxlives 0
g_axismaxlives 0
g_minGameClients 0
g_needpass 0
g_maxlives 0
g_friendlyFire 1
sv_allowAnonymous 0
sv_floodProtect 1
sv_maxPing 750
sv_minPing 0
sv_maxRate 50000
sv_minguidage 0
sv_punkbuster 0
sv_maxclients 40
sv_hostname <HOSTNAME>
sv_privateClients 5
mapname castleattack_b5
protocol 84
timelimit 39
version ET 2.60b linux-i386 May 8 2006
Is there a way to get more then this?
Thx 
