Hello! try this code (works! tested. but not sure if any bugs are in):
code:
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp.open("GET", "http://www.flashflashrevolution.com/profile/Zageron/", true);
xmlhttp.onreadystatechange = function(){
if(xmlhttp.readyState == 4) {
if(xmlhttp.status == 200) {
var status = '';
if(xmlhttp.responseText.search("Browsing FFR Profiles") != -1){
status = "Browsing FFR Profiles";
} else {
if(xmlhttp.responseText.search("Playing FFR") != -1){
status = "Playing FFR";
} else {
if(xmlhttp.responseText.search("Browsing FFR Forums") != -1){
status = "Browsing FFR Forums";
} else {
status = "Offline";
}}}
Messenger.MyPersonalMessage = "Zageron: " + status;
} else {
Messenger.MyPersonalMessage = "Zageron: Offline";
}
}
}
xmlhttp.send(Math.random()*99999);
oops, forgot to send the request