feat: 新增一个客户端notify数据,用于统计。(尚未完全体)

main
NorthLan 3 years ago
parent 761177b22a
commit ddbb363898

@ -0,0 +1,46 @@
syntax = "proto3";
package pb;
option go_package = "/pbNotify";
// -PvP
message NotifyPvPDamage {
int64 uid = 1; // ID
int64 targetUid = 2; // ID
float damage = 3; //
int32 type = 4; // 1- 2-
string unit = 5; //
string skill = 6; //
}
// -PvP
message NotifyPvPKillUnit {
int64 uid = 1; // ID
int64 targetUid = 2; //
string unit = 3; // player: U0001-xx
}
message NotifyPvPKill {
int64 uid = 1; // ID
int64 targetUid = 2; //
}
// -PvP
message NotifyPvPFirstBlood {
int64 uid = 1; // ID
int32 type = 2; // 1- 2-
}
// -PvP
message NotifyPvPReport {
message Report {
int64 uid = 1; // ID
string uname = 2; //
int64 score = 3; //
int64 damage = 4; //
}
int32 winCamp = 1; // 1- 2-
repeated Report winReport = 2; //
repeated Report lostReport = 3; //
}
Loading…
Cancel
Save