Add all AvatarExpedition protos

Expedition system has almost done but still has some bug so it will be uploaded later
This commit is contained in:
ShiroSaki
2022-05-06 07:43:45 +08:00
committed by Melledy
parent 18b1c50d0a
commit eaf0dd0b3b
9 changed files with 150 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
message AvatarExpeditionStartReq {
enum CmdId {
option allow_alias = true;
ENET_CHANNEL_ID = 0;
NONE = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
CMD_ID = 1609;
}
uint64 avatar_guid = 1;
uint32 exp_id = 2;
uint32 hour_time = 3;
}