From d88774fc504621ddda154659c9411329d2135ca6 Mon Sep 17 00:00:00 2001 From: Akbar Yahya <11765082+akbaryahya@users.noreply.github.com> Date: Mon, 14 Nov 2022 02:09:25 +0800 Subject: [PATCH] Add miss PacketDungeonWayPointNotify --- proto/DungeonWayPointNotify.proto | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 proto/DungeonWayPointNotify.proto diff --git a/proto/DungeonWayPointNotify.proto b/proto/DungeonWayPointNotify.proto new file mode 100644 index 00000000..4de92007 --- /dev/null +++ b/proto/DungeonWayPointNotify.proto @@ -0,0 +1,28 @@ +// Proto has been converted from Sorapointa to Grasscutter format +// Sorapointa - A server software re-implementation for a certain anime game, and avoid sorapointa. +// Copyright (C) 2022 Sorapointa 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 . + +syntax = "proto3"; + +option java_package = "emu.grasscutter.net.proto"; + +// CmdId: 903 +// EnetChannelId: 0 +// EnetIsReliable: true +message DungeonWayPointNotify { + bool is_add = 9; + repeated uint32 active_way_point_list = 4; +}