mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
17 lines
315 B
Protocol Buffer
17 lines
315 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
// CmdId: 8796
|
|
// Name: AIOCOPNMCBL
|
|
message BartenderCompleteOrderRsp {
|
|
uint32 finish_order_id = 13;
|
|
uint32 quest_id = 7;
|
|
int32 retcode = 5;
|
|
uint32 formula_id = 12;
|
|
bool is_new = 10;
|
|
repeated uint32 affix_list = 9;
|
|
}
|
|
|