Możesz zastosować skrypt php wyświetlający status GG, autorem jest cezi:
[php:1:0658f2d2f1]<?php
# autor - cezi
set_time_limit(0);
function pokaz_status_gg($nr, $error, $BLAD, $ONLINE, $NIEDOSTEPNY, $AWAY, $LineALL="")
{
$str = 'http://www.gadu-gadu.pl/users/status.asp?id='.$nr.'&styl=2';
if(!@fopen($str, 'r'))
{
print $error;
}
else{
$foo = fopen($str, 'r');
$LineAll = fgets($foo, 300);
$LineAll = str_replace('0', $BLAD, $LineAll);
$LineAll = str_replace('1', $NIEDOSTEPNY, $LineAll);
$LineAll = str_replace('2', $ONLINE, $LineAll);
$LineAll = str_replace('3', $AWAY, $LineAll);
fclose($foo);
}
return eregi_replace("(.*)", "<font style='font-family:verdana;color:darkblue;font-size:12px'>1</font>", @$LineAll);
};
print pokaz_status_gg('3910481','error', 'Blad GG', 'Jestem

','Nie ma mnie

','Jestem On-line ale chwilowo wyszedlem');
?>[/php:1:0658f2d2f1]