PSO2SERVER/Server/Protocol/Handlers/19-UnkHandler/19-04-UNK.cs

19 lines
548 B
C#
Raw Permalink Normal View History

2024-09-22 00:08:44 +08:00
using System;
using PSO2SERVER.Models;
using PSO2SERVER.Protocol.Packets;
2024-09-22 00:08:44 +08:00
namespace PSO2SERVER.Protocol.Handlers
2024-09-22 00:08:44 +08:00
{
[PacketHandlerAttr(0x19, 0x04)]
2024-12-03 13:18:58 +08:00
public class _19_04_UNK : PacketHandler
2024-09-22 00:08:44 +08:00
{
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
{
var info = string.Format("[<--] 接收到的数据 (hex): {0} 字节", data.Length);
Logger.WriteHex(info, data);
2024-11-25 23:33:41 +08:00
//context.SendPacket(new NoPayloadPacket(0x19, 0x05));
2024-09-22 00:08:44 +08:00
}
}
}