19 lines
478 B
Protocol Buffer
19 lines
478 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
// Version: 5.0
|
|
// CmdId: 26599
|
|
|
|
import "ItemHint.proto";
|
|
import "Vector.proto";
|
|
|
|
message ItemAddHintNotify {
|
|
repeated ItemHint item_list = 2;
|
|
repeated ItemHint overflow_transformed_item_list = 3;
|
|
bool is_transfered_from_avatar_card = 5;
|
|
Vector position = 6;
|
|
uint32 reason = 9;
|
|
bool is_position_valid = 11;
|
|
bool is_general_reward_hiden = 12;
|
|
uint32 quest_id = 13;
|
|
}
|