GSServer-CBT/soggy-mistress/proto/ExecuteGroupTriggerReq.proto

19 lines
336 B
Protocol Buffer
Raw Permalink Normal View History

2022-11-21 11:30:31 +03:00
syntax = "proto3";
message ExecuteGroupTriggerReq {
enum CmdId {
option allow_alias = true;
NONE = 0;
CMD_ID = 253;
ENET_CHANNEL_ID = 0;
ENET_IS_RELIABLE = 1;
IS_ALLOW_CLIENT = 1;
}
uint32 sourceEntityId = 1;
string sourceName = 2;
uint32 targetEntityId = 3;
int32 param1 = 4;
int32 param2 = 5;
int32 param3 = 6;
}