mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-02-06 21:19:25 +03:00
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;
|
|
}
|
|
|