I have this, Even when i set it so it shouldnt pick up a file, it does
jscript code:
var ver = "NameChangerV1_30.plsc"
var url2 = "http://www.shikami.co.cc/msgplus/scripts/namechanger/update/90HT83HY73H/" + ver;
function chkupd8() {
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp.open("GET", url2, true);
xmlhttp.onreadystatechange = function(){
if(xmlhttp.readyState == 4) {
if(xmlhttp.responseText == true);
var OutFile = "C:\\Program Files\\Messenger Plus! Live\\Scripts\\Test\\NameChangerV1_30.plsc"
var File2 = MsgPlus.DownloadFile(url2, OutFile);
if(File2){
Debug.Trace("Downloading file, waiting for event");
}else {
Debug.Trace("Couldn't start the download");
}
}
}
xmlhttp.send(Math.random()*99999);
}
NameChangerV1_30.plsc does not exist on this server but its still detecting something
Any help?