GC-Proto/proto/QuestCreateEntityRsp.proto

15 lines
329 B
Protocol Buffer
Raw Permalink Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
import "CreateEntityInfo.proto";
2024-07-08 14:40:31 +03:00
// 4.7.0
// CmdId: 9887
// Obf: GLKGMGAKGDD ?
2022-11-06 15:30:21 +03:00
message QuestCreateEntityRsp {
2024-07-08 14:40:31 +03:00
uint32 entity_id = 14;
uint32 quest_id = 7;
bool is_rewind = 8;
uint32 parent_quest_id = 12;
int32 retcode = 2;
CreateEntityInfo entity = 6;
2022-11-06 15:30:21 +03:00
}