GC-Proto/proto/AvatarEquipChangeNotify.proto

19 lines
389 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
import "SceneReliquaryInfo.proto";
import "SceneWeaponInfo.proto";
2023-01-28 18:50:00 +03:00
2023-02-28 06:08:38 +03:00
// Name: IKNNNIGIPLE
// CmdId: 661
2022-11-06 15:30:21 +03:00
message AvatarEquipChangeNotify {
2023-02-28 06:08:38 +03:00
uint32 equip_type = 5;
uint64 avatar_guid = 3;
SceneReliquaryInfo reliquary = 6;
SceneWeaponInfo weapon = 12;
uint64 equip_guid = 2;
uint32 item_id = 9;
2022-11-06 15:30:21 +03:00
}
2023-02-28 06:08:38 +03:00