ma abyss & chapter 37 fix

This commit is contained in:
rafi1212122
2023-06-04 10:29:08 +07:00
parent 127dc1b345
commit 7c19038c3c
14 changed files with 441 additions and 1 deletions

View File

@@ -0,0 +1,23 @@
using Common.Resources.Proto;
namespace PemukulPaku.GameServer.Handlers
{
[PacketCmdId(CmdId.ChapterBwWorldGetDataReq)]
internal class ChapterBwWorldGetDataReqHandler : IPacketHandler
{
public void Handle(Session session, Packet packet)
{
ChapterBwWorldGetDataReq Data = packet.GetDecodedBody<ChapterBwWorldGetDataReq>();
session.Send(Packet.FromProto(new ChapterBwWorldGetDataRsp()
{
retcode = ChapterBwWorldGetDataRsp.Retcode.Succ,
ChapterBwWorld = new()
{
ChapterId = Data.ChapterId,
EquipRuneUniqueIdLists = new uint[] { 0, 0 }
}
}, CmdId.ChapterBwWorldGetDataRsp));
}
}
}