18 lines
339 B
Protocol Buffer
18 lines
339 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "CreateEntityInfo.proto";
|
|
|
|
// CmdId: 459
|
|
// Name: DEMEIIONLDG
|
|
message QuestCreateEntityRsp {
|
|
uint32 entity_id = 4;
|
|
uint32 parent_quest_id = 6;
|
|
CreateEntityInfo entity = 8;
|
|
uint32 quest_id = 5;
|
|
bool is_rewind = 3;
|
|
int32 retcode = 11;
|
|
}
|
|
|