GC-Proto/proto/ServerBuffChangeNotify.proto

23 lines
543 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
2023-01-28 17:00:48 +03:00
import "ServerBuff.proto";
2023-02-28 06:08:38 +03:00
// Name: AIBNLOKONFF
// CmdId: 353
2022-11-06 15:30:21 +03:00
message ServerBuffChangeNotify {
2023-02-28 06:08:38 +03:00
// Name: MMHNGODLMFF
enum ServerBuffChangeType {
SERVER_BUFF_CHANGE_TYPE_ADD_SERVER_BUFF = 0;
SERVER_BUFF_CHANGE_TYPE_DEL_SERVER_BUFF = 1;
}
2022-12-05 15:02:30 +03:00
2023-02-28 06:08:38 +03:00
ServerBuffChangeType server_buff_change_type = 8;
repeated uint64 avatar_guid_list = 5;
repeated ServerBuff server_buff_list = 9;
repeated uint32 entity_id_list = 15;
bool is_creature_buff = 7;
2022-11-06 15:30:21 +03:00
}
2023-02-28 06:08:38 +03:00