Still getting 4214 even with patched UA for version 3.2. I'm trying to connect to Yuuki. Can't seem to find anything regarding this error for 3.2 yet, what am I doing wrong? Perhaps my Fiddler script is incorrect?
import System.Windows.Forms;
import Fiddler;
import System.Text.RegularExpressions;
class Handlers
{
static function OnBeforeRequest(oS: Session) {
if(oS.host.EndsWith(".yuanshen.com") || oS.host.EndsWith(".hoyoverse.com") || oS.host.EndsWith(".mihoyo.com") || oS.uriContains("http://overseauspider.yuanshen.com:8888/log")) {
//This can also be replaced with another ip/domain server.
//oS.oRequest.headers.UriScheme = "http";
//oS.bypassGateway = true;
oS.host = "genshin.ps.yuuki.me";
//oS.host = "sg.genshin.ps.yuuki.me";
//oS.host = "tes.genshin.ps.yuuki.me";
//oS.host = "localhost";
//oS.host = "2.0.0.100";
//oS["x-overrideHost"] = '2.0.0.100';
}
}
};```