mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2024-12-25 07:59:24 +03:00
fix level up avatar
This commit is contained in:
parent
c5c43b840c
commit
e7e7b48afb
@ -7649,7 +7649,7 @@ message FBJMKLAOICH {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// CmdId: 24626
|
// CmdId: 24626
|
||||||
message BGKBHCBDMCD {
|
message AvatarUpgradeReq {
|
||||||
repeated ItemParam item_param_list = 6;
|
repeated ItemParam item_param_list = 6;
|
||||||
uint64 avatar_guid = 7;
|
uint64 avatar_guid = 7;
|
||||||
}
|
}
|
||||||
@ -8290,7 +8290,7 @@ enum EnterCustomDungeonType {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// CmdId: 24717
|
// CmdId: 24717
|
||||||
message BLLMLEOCFDA {
|
message AvatarUpgradeRsp {
|
||||||
uint32 old_level = 1;
|
uint32 old_level = 1;
|
||||||
uint64 avatar_guid = 2;
|
uint64 avatar_guid = 2;
|
||||||
uint32 cur_level = 12;
|
uint32 cur_level = 12;
|
||||||
@ -21833,7 +21833,7 @@ message FACDMKCFPGC {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// CmdId: 20328
|
// CmdId: 20328
|
||||||
message PJPDLMEIEKL {
|
message AvatarPromoteRsp {
|
||||||
uint64 guid = 1;
|
uint64 guid = 1;
|
||||||
int32 retcode = 12;
|
int32 retcode = 12;
|
||||||
}
|
}
|
||||||
@ -30792,7 +30792,7 @@ message LOHMCJFCLLE {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// CmdId: 20441
|
// CmdId: 20441
|
||||||
message GIOBHMNCNGA {
|
message AvatarPromoteReq {
|
||||||
uint64 guid = 11;
|
uint64 guid = 11;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,8 +1,9 @@
|
|||||||
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: 2232
|
// CmdId: 20441
|
||||||
|
// GIOBHMNCNGA
|
||||||
message AvatarPromoteReq {
|
message AvatarPromoteReq {
|
||||||
uint64 guid = 14;
|
uint64 guid = 11;
|
||||||
}
|
}
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
syntax = "proto3";
|
syntax = "proto3";
|
||||||
option java_package = "emu.grasscutter.net.proto";
|
option java_package = "emu.grasscutter.net.proto";
|
||||||
|
|
||||||
//AvatarPromoteRsp
|
// 4.7.0
|
||||||
// 4.6.0
|
// CmdId: 26563 or 21074 or 29410 or 20328 (t1) or 26699
|
||||||
// CmdId: 3564
|
// PJPDLMEIEKL
|
||||||
message AvatarPromoteRsp {
|
message AvatarPromoteRsp {
|
||||||
uint64 guid = 13;
|
uint64 guid = 1;
|
||||||
int32 retcode = 15;
|
int32 retcode = 12;
|
||||||
}
|
}
|
@ -4,10 +4,10 @@ option java_package = "emu.grasscutter.net.proto";
|
|||||||
|
|
||||||
import "ItemParam.proto";
|
import "ItemParam.proto";
|
||||||
|
|
||||||
// CmdId: 2937
|
// CmdId: 24626
|
||||||
// Version: 4.6.0
|
// Version: 4.7.0
|
||||||
// Obfs: HFANJCHEDHC
|
// Obfs: BGKBHCBDMCD
|
||||||
message AvatarUpgradeReq {
|
message AvatarUpgradeReq {
|
||||||
repeated ItemParam item_param_list = 6;
|
repeated ItemParam item_param_list = 6;
|
||||||
uint64 avatar_guid = 15;
|
uint64 avatar_guid = 7;
|
||||||
}
|
}
|
@ -1,12 +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: 6374
|
// CmdId: 24717
|
||||||
// maybe
|
// BLLMLEOCFDA
|
||||||
message AvatarUpgradeRsp {
|
message AvatarUpgradeRsp {
|
||||||
int32 retcode = 2;
|
int32 retcode = 13;
|
||||||
uint32 old_level = 8;
|
uint32 old_level = 1;
|
||||||
uint64 avatar_guid = 10;
|
uint64 avatar_guid = 2;
|
||||||
uint32 cur_level = 11;
|
uint32 cur_level = 12;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user