mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-04-04 16:16:06 +03:00
21 lines
473 B
Protocol Buffer
21 lines
473 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "ItemHint.proto";
|
|
import "Vector.proto";
|
|
|
|
// CmdId: 632
|
|
// EnetChannelId: 0
|
|
// EnetIsReliable: true
|
|
message ItemAddHintNotify {
|
|
repeated ItemHint item_list = 10;
|
|
Vector position = 12;
|
|
bool is_position_valid = 13;
|
|
uint32 reason = 5;
|
|
uint32 quest_id = 14;
|
|
bool is_transfered_from_avatar_card = 11;
|
|
repeated ItemHint overflow_transformed_item_list = 3;
|
|
bool is_general_reward_hiden = 7;
|
|
}
|