GC-Proto/proto/WorldPlayerDieNotify.proto

16 lines
309 B
Protocol Buffer
Raw Normal View History

2022-11-06 15:30:21 +03:00
syntax = "proto3";
2024-04-22 15:15:37 +03:00
2023-01-28 18:50:00 +03:00
option java_package = "emu.grasscutter.net.proto";
2024-04-22 15:15:37 +03:00
import "PlayerDieType.proto";
2024-04-22 15:15:37 +03:00
2024-06-23 18:33:14 +03:00
// 4.7.0
2022-11-06 15:30:21 +03:00
message WorldPlayerDieNotify {
2024-06-23 18:33:14 +03:00
PlayerDieType die_type = 3;
uint32 murderer_entity_id = 6;
uint32 CMFMJLIALCD = 15;
oneof entity {
uint32 monster_id = 13;
uint32 gadget_id = 1;
}
2024-04-22 15:15:37 +03:00
}