GCG初步 但会卡进度条 用命令/gcg进入

This commit is contained in:
UnKownOwO
2023-01-04 21:59:25 +08:00
parent 2bc157dd2d
commit f991480192
203 changed files with 5104 additions and 2790 deletions

View File

@@ -20,17 +20,23 @@ import "GCGEndReason.proto";
import "GCGGameBusinessType.proto";
import "ItemParam.proto";
package proto;
option go_package = "./;proto";
// CmdId: 7769
// EnetChannelId: 0
// EnetIsReliable: true
message GCGSettleNotify {
uint32 game_id = 7;
GCGGameBusinessType business_type = 2;
bool is_win = 13;
repeated ItemParam reward_item_list = 9;
repeated uint32 finished_challenge_id_list = 6;
GCGEndReason reason = 3;
// enum CmdId {
// option allow_alias = true;
// NONE = 0;
// CMD_ID = 7562;
// ENET_CHANNEL_ID = 0;
// ENET_IS_RELIABLE = 1;
// }
repeated ItemParam reward_item_list = 8;
repeated uint32 finished_challenge_id_list = 1;
uint32 game_id = 3;
bool is_win = 2;
GCGGameBusinessType business_type = 5;
uint32 win_controller_id = 11;
repeated uint32 forbid_finish_challenge_list = 10;
GCGEndReason reason = 4;
}