monster event stuff

This commit is contained in:
Yuuki 2024-08-21 21:27:38 +08:00
parent 84cbf3411a
commit 103ae695bb
5 changed files with 19 additions and 51 deletions

View File

@ -1,12 +1,10 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
import "CutSceneExtraParam.proto";
// 4.7.0
// CmdId: 305
message CutSceneBeginNotify {
uint32 cutscene_id = 11;
bool is_wait_others = 8;
uint32 cutscene_id = 5;
bool is_wait_others = 3;
repeated CutSceneExtraParam extra_param_list = 15;
}

View File

@ -1,8 +1,7 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
// 4.7.0
// ?
message CutSceneExtraParam {
repeated double detail_param_list = 14;
repeated double detail_param_list = 1;
}

View File

@ -1,23 +1,8 @@
// https://github.com/SlushinPS/beach-simulator
// Copyright (C) 2023 Slushy Team
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
// CmdId: 3111
// Obf: PKIMGJKJMFE
// 4.7.0
// CmdId: 5287
// Obf: EFNEGOBNLHF
message MonsterForceAlertNotify {
uint32 monster_entity_id = 8;
uint32 monster_entity_id = 14;
}

View File

@ -1,24 +1,9 @@
// https://github.com/SlushinPS/beach-simulator
// Copyright (C) 2023 Slushy Team
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
// CmdId: 26800
// Obf: NAILAGKGLBA
// 4.7.0
// CmdId: 7831
// Obf: APONHDKOLKA
message MonsterSummonTagNotify {
map<uint32, uint32> summon_tag_map = 11;
uint32 monster_entity_id = 12;
map<uint32, uint32> summon_tag_map = 1;
uint32 monster_entity_id = 7;
}

View File

@ -1,9 +1,10 @@
syntax = "proto3";
option java_package = "emu.grasscutter.net.proto";
// 4.7.0
// CmdId: 22099
// ?
message ServerGlobalValueChangeNotify {
float value = 6;
uint32 key_hash = 2;
uint32 entity_id = 14;
float value = 12;
uint32 key_hash = 6;
uint32 entity_id = 9;
}