2022-11-06 15:30:21 +03:00
|
|
|
syntax = "proto3";
|
2024-08-28 12:09:22 +03:00
|
|
|
|
2023-01-28 18:50:00 +03:00
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
2024-08-28 12:09:22 +03:00
|
|
|
// Version: 5.0
|
|
|
|
// CmdId: 26599
|
2024-05-26 13:51:42 +03:00
|
|
|
|
2023-01-28 17:00:48 +03:00
|
|
|
import "ItemHint.proto";
|
2023-02-28 06:08:38 +03:00
|
|
|
import "Vector.proto";
|
2024-04-22 15:15:37 +03:00
|
|
|
|
2024-08-28 12:09:22 +03:00
|
|
|
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;
|
|
|
|
}
|