PSO2SERVER/Server/Protocol/Handlers/1C-CharacterInfoHandler/1C-46-UNK.cs

30 lines
854 B
C#
Raw Normal View History

2024-11-24 23:40:50 +08:00
using System;
using PSO2SERVER.Models;
using PSO2SERVER.Protocol.Packets;
2024-11-24 23:40:50 +08:00
namespace PSO2SERVER.Protocol.Handlers
2024-11-24 23:40:50 +08:00
{
[PacketHandlerAttr(0x1C, 0x46)]
2024-12-03 13:18:58 +08:00
public class _1C_46_UNK : PacketHandler
2024-11-24 23:40:50 +08:00
{
//PACKED
public struct _1C_46_PACKET
{
2024-11-27 20:53:51 +08:00
public uint unk1 { get; set; }
public uint unk2 { get; set; }
public uint unk3 { get; set; }
}
2024-11-27 20:53:51 +08:00
_1C_46_PACKET pkt = new _1C_46_PACKET();
2024-11-24 23:40:50 +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);
var reader = new PacketReader(data, position, size);
2024-11-27 20:53:51 +08:00
pkt = reader.ReadStruct<_1C_46_PACKET>();
2024-11-24 23:40:50 +08:00
}
}
}