GC-Proto/proto/ItemAddHintNotify.proto

21 lines
437 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";
2022-11-06 15:30:21 +03:00
2023-01-28 17:00:48 +03:00
import "ItemHint.proto";
2023-02-28 06:08:38 +03:00
import "Vector.proto";
2023-04-11 11:18:47 +03:00
// CmdId: 616
// Name: IBLPBENLBJI
2022-11-06 15:30:21 +03:00
message ItemAddHintNotify {
2023-04-11 11:18:47 +03:00
repeated ItemHint item_list = 12;
Vector position = 9;
repeated ItemHint overflow_transformed_item_list = 15;
uint32 quest_id = 6;
bool OCIEEDOLGDB = 3;
bool ENCLFHLBLLA = 8;
bool JPDJLIPKABJ = 13;
uint32 reason = 11;
2022-11-06 15:30:21 +03:00
}
2023-02-28 06:08:38 +03:00