import Fiddler; class Handlers { static function OnBeforeRequest(oSession: Session) { if (oSession.hostname.Contains(".ol.epicgames.com")) { if (oSession.HTTPMethodIs("CONNECT")) { oSession["x-replywithtunnel"] = "FortniteTunnel"; return; } oSession.fullUrl = "http://127.0.0.1:8080" + oSession.PathAndQuery; } } }