mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-03-02 16:24:37 +03:00
23 lines
388 B
Protocol Buffer
23 lines
388 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
// CmdId: 1112
|
|
// Name: PMHDPEOJPNM
|
|
message ServerUpdateGlobalValueNotify {
|
|
// Name: CFLHPGFIDBE
|
|
enum UpdateType {
|
|
INVALUE = 0;
|
|
ADD = 1;
|
|
SET = 2;
|
|
}
|
|
|
|
uint32 entity_id = 15;
|
|
float delta = 6;
|
|
uint32 key_hash = 14;
|
|
float value = 5;
|
|
UpdateType update_type = 2;
|
|
}
|
|
|