mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-08-03 02:50:13 +03:00
Update 3.3 (wow, a lot changed)
This commit is contained in:
@@ -21,18 +21,23 @@ import "ServerBuff.proto";
|
||||
|
||||
option java_package = "emu.grasscutter.net.proto";
|
||||
|
||||
// CmdId: 361
|
||||
// EnetChannelId: 0
|
||||
// EnetIsReliable: true
|
||||
message ServerBuffChangeNotify {
|
||||
ServerBuffChangeType server_buff_change_type = 7;
|
||||
bool is_creature_buff = 10;
|
||||
repeated uint32 entity_id_list = 1;
|
||||
repeated uint64 avatar_guid_list = 12;
|
||||
repeated ServerBuff server_buff_list = 11;
|
||||
// enum CmdId {
|
||||
// option allow_alias = true;
|
||||
// NONE = 0;
|
||||
// CMD_ID = 398;
|
||||
// ENET_CHANNEL_ID = 0;
|
||||
// ENET_IS_RELIABLE = 1;
|
||||
// }
|
||||
|
||||
enum ServerBuffChangeType {
|
||||
SERVER_BUFF_CHANGE_TYPE_ADD_SERVER_BUFF = 0;
|
||||
SERVER_BUFF_CHANGE_TYPE_DEL_SERVER_BUFF = 1;
|
||||
}
|
||||
|
||||
repeated ServerBuff server_buff_list = 4;
|
||||
bool is_creature_buff = 8;
|
||||
repeated uint32 entity_id_list = 6;
|
||||
ServerBuffChangeType server_buff_change_type = 9;
|
||||
repeated uint64 avatar_guid_list = 5;
|
||||
}
|
||||
|
Reference in New Issue
Block a user