Update 3.3 (wow, a lot changed)

This commit is contained in:
Akbar Yahya
2022-12-05 19:41:24 +08:00
parent 238dd43a77
commit cf717aa6a0
2949 changed files with 32506 additions and 43050 deletions

View File

@@ -19,13 +19,14 @@ syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
// CmdId: 161
// EnetChannelId: 0
// EnetIsReliable: true
message RemoveRandTaskInfoNotify {
bool is_succ = 9;
FinishReason reason = 10;
uint32 rand_task_id = 13;
// enum CmdId {
// option allow_alias = true;
// NONE = 0;
// CMD_ID = 198;
// ENET_CHANNEL_ID = 0;
// ENET_IS_RELIABLE = 1;
// }
enum FinishReason {
FINISH_REASON_DEFAULT = 0;
@@ -33,4 +34,8 @@ message RemoveRandTaskInfoNotify {
FINISH_REASON_DISTANCE = 2;
FINISH_REASON_FINISH = 3;
}
uint32 rand_task_id = 10;
FinishReason reason = 13;
bool is_succ = 5;
}