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