GC-Proto/proto/GadgetPlayUidOpNotify.proto

17 lines
313 B
Protocol Buffer
Raw Normal View History

2023-02-18 04:48:44 +03:00
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
2023-02-28 04:12:44 +03:00
// Name: NKPCEHIAFBE
// CmdId: 807
2023-02-18 04:48:44 +03:00
message GadgetPlayUidOpNotify {
2023-02-28 04:12:44 +03:00
uint32 entity_id = 10;
uint32 play_type = 3;
repeated uint32 uid_list = 12;
uint32 op = 11;
repeated uint32 param_list = 6;
string param_str = 9;
2023-02-18 04:48:44 +03:00
}
2023-02-28 04:12:44 +03:00