16 lines
290 B
Protocol Buffer
16 lines
290 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "CreateEntityInfo.proto";
|
|
|
|
// CmdId: 463
|
|
// Name: PAADNAFBNIB
|
|
message QuestCreateEntityReq {
|
|
CreateEntityInfo entity = 2;
|
|
uint32 quest_id = 5;
|
|
uint32 parent_quest_id = 11;
|
|
bool is_rewind = 1;
|
|
}
|
|
|