2022-04-26 21:44:30 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
|
|
import "ItemHint.proto";
|
2022-05-28 06:58:12 +00:00
|
|
|
import "Vector.proto";
|
2022-04-26 21:44:30 +00:00
|
|
|
|
2022-05-28 06:58:12 +00:00
|
|
|
// CmdId: 632
|
|
|
|
// EnetChannelId: 0
|
|
|
|
// EnetIsReliable: true
|
2022-04-26 21:44:30 +00:00
|
|
|
message ItemAddHintNotify {
|
2022-05-28 06:58:12 +00:00
|
|
|
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;
|
2022-04-26 21:44:30 +00:00
|
|
|
}
|