13 lines
275 B
Protocol Buffer
13 lines
275 B
Protocol Buffer
syntax = "proto3";
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
import "CreateEntityInfo.proto";
|
|
// 4.7.0
|
|
// CmdId: 28703
|
|
// Obf: ?
|
|
message QuestCreateEntityReq {
|
|
uint32 quest_id = 2;
|
|
uint32 parent_quest_id = 15;
|
|
bool is_rewind = 5;
|
|
CreateEntityInfo entity = 14;
|
|
}
|