Compare commits
2 commits
Author | SHA1 | Date | |
---|---|---|---|
afaf0e591d | |||
f02f6297e3 |
3 changed files with 4 additions and 3 deletions
|
@ -37,7 +37,8 @@ Navigate to the [Releases](https://git.xeondev.com/HonkaiSlopRail/jingliu-sr/rel
|
|||
page and download the latest release for your platform.
|
||||
|
||||
## Connecting
|
||||
[Get 3.3.51 client](https://gofile.io/d/tWhXrJ)
|
||||
[Get 3.3.51 CN client](https://gofile.io/d/tWhXrJ)
|
||||
[Get 3.3.53 OS client](https://harbinyupai-my.sharepoint.com/personal/necroticglow_yupaiharbin_com/_layouts/15/onedrive.aspx?id=%2Fpersonal%2Fnecroticglow%5Fyupaiharbin%5Fcom%2FDocuments%2F114514%2FStarRail%2F3%2E3%2E5X%2F3%2E3%2E53%5FOS&ga=1)
|
||||
|
||||
## Functionality (work in progress)
|
||||
- Login and player spawn
|
||||
|
|
|
@ -111,7 +111,7 @@ pub fn onLeaveChallenge(session: *Session, _: *const Packet, allocator: Allocato
|
|||
var lineup_mgr = LineupManager.init(allocator);
|
||||
const lineup = try lineup_mgr.createLineup();
|
||||
var scene_manager = SceneManager.init(allocator);
|
||||
const scene_info = try scene_manager.createScene(20432, 20432001, 2043201, 1213);
|
||||
const scene_info = try scene_manager.createScene(20422, 20422001, 2042201, 1025);
|
||||
try session.send(CmdID.CmdQuitBattleScNotify, protocol.QuitBattleScNotify{});
|
||||
try session.send(CmdID.CmdEnterSceneByServerScNotify, protocol.EnterSceneByServerScNotify{
|
||||
.reason = protocol.EnterSceneReason.ENTER_SCENE_REASON_NONE,
|
||||
|
|
|
@ -16,7 +16,7 @@ const log = std.log.scoped(.scene_service);
|
|||
|
||||
pub fn onGetCurSceneInfo(session: *Session, _: *const Packet, allocator: Allocator) !void {
|
||||
var scene_manager = SceneManager.init(allocator);
|
||||
const scene_info = try scene_manager.createScene(20432, 20432001, 2043201, 1213);
|
||||
const scene_info = try scene_manager.createScene(20422, 20422001, 2042201, 1025);
|
||||
try session.send(CmdID.CmdGetCurSceneInfoScRsp, protocol.GetCurSceneInfoScRsp{
|
||||
.scene = scene_info,
|
||||
.retcode = 0,
|
||||
|
|
Loading…
Reference in a new issue