fix unlock constellation

This commit is contained in:
Yuuki 2024-07-03 15:50:29 +08:00
parent eea7861a01
commit c5c43b840c
4 changed files with 24 additions and 21 deletions

View File

@ -11792,9 +11792,9 @@ message CFJLOOAMNOM {
} }
// CmdId: 21301 // CmdId: 21301
message POBPMGEKEEA { message UnlockAvatarTalentReq {
uint64 avatar_guid = 12; uint64 avatar_guid = 12;
uint32 KMDOGFBMGFI = 14; uint32 talent_id = 14;
} }
message HMNCGANKGOL { message HMNCGANKGOL {
@ -20356,10 +20356,10 @@ message NBEMKLHIHPH {
} }
// CmdId: 22369 // CmdId: 22369
message GILHLKDPNEO { message UnlockAvatarTalentRsp {
int32 retcode = 8; int32 retcode = 8;
uint64 avatar_guid = 13; uint64 avatar_guid = 13;
uint32 KMDOGFBMGFI = 15; uint32 talent_id = 15;
} }
// CmdId: 24040 // CmdId: 24040
@ -31754,8 +31754,8 @@ message KBIKLBDCCOM {
} }
// CmdId: 1893 // CmdId: 1893
message BIGHCFNPKBH { message AvatarUnlockTalentNotify {
uint32 KMDOGFBMGFI = 1; uint32 talent_id = 1;
uint64 avatar_guid = 5; uint64 avatar_guid = 5;
uint32 skill_depot_id = 6; uint32 skill_depot_id = 6;
uint32 entity_id = 14; uint32 entity_id = 14;

View File

@ -1,11 +1,12 @@
syntax = "proto3"; syntax = "proto3";
option java_package = "emu.grasscutter.net.proto"; option java_package = "emu.grasscutter.net.proto";
// 4.6.0 // 4.7.0
// CmdId: 23680 // CmdId: 1893
// BIGHCFNPKBH
message AvatarUnlockTalentNotify { message AvatarUnlockTalentNotify {
uint64 avatar_guid = 4; uint64 avatar_guid = 5;
uint32 skill_depot_id = 5; uint32 skill_depot_id = 6;
uint32 entity_id = 10; uint32 entity_id = 14;
uint32 talent_id = 15; uint32 talent_id = 1;
} }

View File

@ -1,9 +1,10 @@
syntax = "proto3"; syntax = "proto3";
option java_package = "emu.grasscutter.net.proto"; option java_package = "emu.grasscutter.net.proto";
// 4.6.0 // 4.7.0
// CmdId: 4199 // CmdId: 21301
// POBPMGEKEEA
message UnlockAvatarTalentReq { message UnlockAvatarTalentReq {
uint64 avatar_guid = 3; uint64 avatar_guid = 12;
uint32 talent_id = 10; uint32 talent_id = 14;
} }

View File

@ -1,10 +1,11 @@
syntax = "proto3"; syntax = "proto3";
option java_package = "emu.grasscutter.net.proto"; option java_package = "emu.grasscutter.net.proto";
// 4.6.0 // 4.7.0
// CmdId: 28618 // CmdId: 22369
// GILHLKDPNEO
message UnlockAvatarTalentRsp { message UnlockAvatarTalentRsp {
uint32 talent_id = 9; uint32 talent_id = 15;
uint64 avatar_guid = 11; uint64 avatar_guid = 13;
int32 retcode = 12; int32 retcode = 8;
} }