fix DungeonSlipRevivePoint

This commit is contained in:
Yuuki 2024-07-09 06:07:14 +08:00
parent 5e5dbaffe5
commit aa3bfc41c1
3 changed files with 14 additions and 44 deletions

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"; syntax = "proto3";
option java_package = "emu.grasscutter.net.proto"; option java_package = "emu.grasscutter.net.proto";
// CmdId: 8945 // 4.7.0
// Obf: NMHIJGEDOLK // CmdId: 28862
// Obf: OILPFJDPOLB
message DungeonSlipRevivePointActivateReq { message DungeonSlipRevivePointActivateReq {
uint32 slip_revive_point_id = 11; uint32 slip_revive_point_id = 6;
} }

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"; syntax = "proto3";
option java_package = "emu.grasscutter.net.proto"; option java_package = "emu.grasscutter.net.proto";
// CmdId: 1980 // 4.7.0
// Obf: CNEDCJKENNB // CmdId: 24625
// Obf: CGPKIMAAFKD
message DungeonSlipRevivePointActivateRsp { message DungeonSlipRevivePointActivateRsp {
uint32 slip_revive_point_id = 5; uint32 slip_revive_point_id = 15;
int32 retcode = 6; int32 retcode = 4;
} }

View File

@ -2,10 +2,10 @@ syntax = "proto3";
option java_package = "emu.grasscutter.net.proto"; option java_package = "emu.grasscutter.net.proto";
// CmdId: 26318 // CmdId: 8454(x) or 27604
// Version: 4.6.0 // Version: 4.7.0
// Obfs: KHEPLNGHMBP // Obfs: NGNJHNCPCDG
message DungeonWayPointNotify { message DungeonWayPointNotify {
bool is_add = 6; bool is_add = 3;
repeated uint32 active_way_point_list = 14; repeated uint32 active_way_point_list = 6;
} }