2022-12-28 07:44:06 +03:00
|
|
|
syntax = "proto3";
|
2023-02-28 06:08:38 +03:00
|
|
|
|
2023-01-28 18:50:00 +03:00
|
|
|
option java_package = "emu.grasscutter.net.proto";
|
2022-12-28 07:44:06 +03:00
|
|
|
|
2023-01-29 02:46:20 +03:00
|
|
|
import "Vector.proto";
|
2023-01-29 13:42:51 +03:00
|
|
|
|
2023-02-28 06:08:38 +03:00
|
|
|
// Name: FAKNACHPGAI
|
|
|
|
// CmdId: 1150
|
2022-12-28 07:44:06 +03:00
|
|
|
message WindSeedClientNotify {
|
2023-02-28 06:08:38 +03:00
|
|
|
// Name: ANMFOJDBIBG
|
|
|
|
message RefreshNotify {
|
|
|
|
uint32 refresh_num = 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Name: LHKKBIBDMCK
|
|
|
|
message AddWindBulletNotify {
|
|
|
|
uint32 ICPHHBKENBN = 12;
|
|
|
|
uint32 EAIILHENDGN = 13;
|
|
|
|
Vector seed_pos = 7;
|
|
|
|
}
|
2023-01-28 17:00:48 +03:00
|
|
|
|
2023-02-28 06:08:38 +03:00
|
|
|
// Name: BOKCJDAIEHG
|
|
|
|
message AreaNotify {
|
|
|
|
uint32 area_id = 12;
|
|
|
|
uint32 area_type = 9;
|
|
|
|
bytes area_code = 2;
|
|
|
|
}
|
2023-01-28 17:00:48 +03:00
|
|
|
|
2023-02-28 06:08:38 +03:00
|
|
|
oneof notify {
|
|
|
|
RefreshNotify refresh_notify = 13;
|
|
|
|
AddWindBulletNotify add_wind_bullet_notify = 4;
|
|
|
|
AreaNotify area_notify = 12;
|
|
|
|
}
|
2022-12-28 07:44:06 +03:00
|
|
|
}
|
2023-02-28 06:08:38 +03:00
|
|
|
|