mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
17 lines
314 B
Protocol Buffer
17 lines
314 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
// Name: EHBGNICFNBD
|
|
// CmdId: 8709
|
|
message BartenderCompleteOrderRsp {
|
|
uint32 quest_id = 15;
|
|
uint32 formula_id = 6;
|
|
int32 retcode = 1;
|
|
uint32 finish_order_id = 8;
|
|
repeated uint32 affix_list = 14;
|
|
bool is_new = 5;
|
|
}
|
|
|