/hkrpg-go-public

Primary LanguageGoGNU Affero General Public License v3.0AGPL-3.0

hkrpg-go

EN | 简中 | 繁中 | JP | RU | FR | KR | VI

欢迎加入我们的 Discord

朋友要复出了,可以关注一下 hk4e-dmca

请不要在生产环境中使用

文档:

注:

  • 如果你想帮助此项目,欢迎提交

已完成内容

  • 背包
  • 战斗
  • 抽卡
  • 编队
  • 邮件
  • 好友
  • 场景道具/怪物/NPC生成
  • 剧情
  • 忘却之庭等衍生内容
  • 模拟宇宙
  • 差分宇宙
  • 常时传略(部分

与客户端(Fiddler)连接

  1. 安装并运行 Fiddler Classic
  2. 将Fiddler设置为解密https流量(工具 -> 选项 -> HTTPS -> 解密HTTPS流量),确保选中 忽略服务器证书错误
  3. 将以下代码复制并粘贴到Fiddler Classic的Fiddlerscript选项卡中:
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(".mihoyo.com") ||
        oS.host.EndsWith(".zenlesszonezero.com") ||
        oS.host.EndsWith(".honkaiimpact3.com") ||
        oS.host.EndsWith(".bhsr.com") ||
        oS.host.EndsWith(".starrails.com") ||
        oS.uriContains("http://overseauspider.yuanshen.com:8888/log")
    ) {
        var newUrl = "http://" + oS.host + oS.PathAndQuery;
        oS.fullUrl = newUrl;
        oS.host = "127.0.0.1:8080";
    }
}
};
  1. 使用您的帐户名称登录,密码可以设置为任何值。