GC-Proto/proto/MusicGameSettleReq.proto

29 lines
672 B
Protocol Buffer
Raw Permalink 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-03-21 02:37:31 +03:00
// CmdId: 8892 (3.2)
// EnetChannelId: 0
// EnetIsReliable: true
// IsAllowClient: true
2023-02-28 06:08:38 +03:00
message MusicGameSettleReq {
2023-03-21 02:37:31 +03:00
repeated uint32 button_list = 384;
uint32 delay = 795;
repeated uint32 note_list = 4;
uint32 score_rating = 15;
uint32 score = 9;
uint64 ugc_guid = 6;
uint32 restart_times = 13;
bool is_custom_delay = 422;
uint32 max_combo = 5;
uint32 is_full_combo = 1058;
float speed = 409;
bool is_save_score = 3;
uint32 combo = 1;
uint32 music_basic_id = 7;
uint32 star_rating = 2;
uint32 volume = 1953;
uint32 correct_hit = 14;
bool is_custom_speed = 1285;
2022-11-06 15:30:21 +03:00
}