GC-Proto/proto/DungeonChallengeBeginNotify...

17 lines
337 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2022-11-06 15:30:21 +03:00
option java_package = "emu.grasscutter.net.proto";
2023-02-28 06:08:38 +03:00
// Name: HKGINFNAIMB
// CmdId: 961
2022-11-06 15:30:21 +03:00
message DungeonChallengeBeginNotify {
2023-02-28 06:08:38 +03:00
uint32 challenge_id = 8;
uint32 father_index = 10;
repeated uint32 uid_list = 13;
uint32 group_id = 7;
repeated uint32 param_list = 12;
uint32 challenge_index = 4;
2022-11-06 15:30:21 +03:00
}
2023-02-28 06:08:38 +03:00