From 0093fa43cbd4349c52facf7c1a7f00d1e2815f29 Mon Sep 17 00:00:00 2001 From: rfi Date: Mon, 25 Dec 2023 00:30:15 +0000 Subject: [PATCH] Add Getting Started --- Getting-Started.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Getting-Started.md diff --git a/Getting-Started.md b/Getting-Started.md new file mode 100644 index 0000000..41a78a6 --- /dev/null +++ b/Getting-Started.md @@ -0,0 +1,19 @@ +## Connecting +- Download and install [Fiddler Classic](https://www.telerik.com/fiddler/fiddler-classic) +- Open Fiddler Classic and go to the `FiddlerScript` tab +- Paste in this script +``` +import System; +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(".starrails.com") || oS.host.EndsWith(".bhsr.com") || oS.host.EndsWith(".kurogame.net") || oS.host.EndsWith(".kurogame.com") || oS.host.EndsWith(".zenlesszonezero.com") || oS.host.EndsWith(".g3.proletariat.com") || oS.host.EndsWith("west.honkaiimpact3.com") || oS.host.EndsWith("westglobal01.honkaiimpact3.com") || oS.host.EndsWith(".os.honkaiimpact3.com") || oS.host.EndsWith("overseas01-appsflyer-report.honkaiimpact3.com") || oS.host.EndsWith(".mihoyo.com") || oS.host.EndsWith("global1.bh3.com")) { + oS.host = "127.0.0.1"; + } + } +}; +``` +- Click `Save Script` \ No newline at end of file