mirror of
https://gitlab.com/YuukiPS/GC-Proto.git
synced 2025-01-13 01:09:26 +03:00
23 lines
388 B
Protocol Buffer
23 lines
388 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
|
|
|
|
|
// Name: LELLKGFJIGJ
|
|
// CmdId: 1191
|
|
message ServerUpdateGlobalValueNotify {
|
|
// Name: IFGPMCDEMII
|
|
enum UpdateType {
|
|
INVALUE = 0;
|
|
ADD = 1;
|
|
SET = 2;
|
|
}
|
|
|
|
float delta = 10;
|
|
uint32 key_hash = 7;
|
|
UpdateType update_type = 4;
|
|
float value = 8;
|
|
uint32 entity_id = 14;
|
|
}
|
|
|