This repository has been archived on 2025-01-22. You can view files and clone it, but cannot push or open issues or pull requests.
SCHALE.GameServer/Account_Data_into_SCHALE_ZH...

24 lines
1.0 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

**如何将官方账号数据保存并加载到 SCHALE (ZHCN)**
- CN-By 北野桜奈
1. 使用任何 Pcap 程序,打开它并登录到你的官方账号,抓取数据包。
Pcap 文件应类似于以下示例:
[示例 Pcap 文件](https://gist.github.com/raphaeIl/b85185098b6ef0d569c794f49c8f910c)
2. 将该文件保存为 JSON 格式,并放置到 `Resources\account_data` 文件夹中。如果文件夹不存在,请自行创建。
示例文件路径:`Resources\account_data\accountdata_Raphael.json`
3. 启动服务器,进入游戏并运行以下命令:
```
/loaddata list
```
如果日志显示了你的 JSON 文件名,说明该文件已正确放置。
4. 运行以下命令加载数据:
```
/loaddata <your_json_filename.json>
```
这将从官方服务器的 Pcap 数据加载到 PS。如果加载成功请重启客户端所有数据应该已加载。
**提示:** 如果你的自定义 Pcap 文件无法正常工作,请先尝试我的示例 JSON 文件。