GC-Proto/proto/ItemAddHintNotify.proto

17 lines
391 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
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-06-23 18:33:14 +03:00
// 4.7.0
2022-11-06 15:30:21 +03:00
message ItemAddHintNotify {
2024-06-23 18:33:14 +03:00
bool FMLDPGOOCPG = 1;
repeated ItemHint overflow_transformed_item_list = 2;
uint32 reason = 3;
Vector position = 4;
uint32 quest_id = 8;
repeated ItemHint item_list = 10;
bool BJFIEHFPADD = 12;
bool DAKGABMHAHP = 14;
2024-05-26 13:51:42 +03:00
}