So while Im trying to find this in the account server, has anyone already done this, and found the salt value used in md5 password creation?
function login(txtPassword)
{
var a = txtPassword;
var b = "\xa3\xac\xa1\xa3";
var c = "fdjf,jkgfkl";
var s = a+b+c;
var r = MD5(s);
return r;
}