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

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

View File

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

View File

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