Use this to find your Steam64 IDhttps://steamid.io/lookup
I think online, away, and busy are pretty vagueit would probably be better to use colors, specifically green, yellow, and orange, respectivelyand can you share the source code??
<?phpfunction clean($string) { $string = str_replace(' ', '-', $string); return preg_replace('/[^A-Za-z0-9\-]/', '', $string);}$url = "http://api.steampowered.com/ISteamUser/GetPlayerSummaries/v0002/?key=(STEAM API KEY OMITTED)&steamids=".clean(htmlspecialchars($_GET["id"]))."&format=xml";$get = file_get_contents($url);$xml = simplexml_load_string($get);$img = './stonline/'.$xml->players->player->personastate.'.gif';$fp = fopen($img, 'rb');header("Content-Type: image/gif");header("Content-Length: ".filesize($img));fpassthru($fp);exit;?>