18 lines
327 B
Protocol Buffer
18 lines
327 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
import "PlayerDieType.proto";
|
|
|
|
// CmdId: 279
|
|
// Name: GKOJHPIPBHO
|
|
message WorldPlayerDieNotify {
|
|
PlayerDieType die_type = 15;
|
|
uint32 murderer_entity_id = 10;
|
|
oneof entity {
|
|
uint32 monster_id = 2;
|
|
uint32 gadget_id = 7;
|
|
}
|
|
}
|
|
|