PSO2SERVER/Server/Protocol/Handlers/0B-QuestHandler/0B-30-QuestCounterHandler.cs

23 lines
630 B
C#
Raw Normal View History

using PSO2SERVER.Protocol.Packets;
2024-09-21 12:35:09 +08:00
using System;
2024-09-16 02:56:02 +08:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PSO2SERVER.Protocol.Handlers
2024-09-16 02:56:02 +08:00
{
[PacketHandlerAttr(0x0B, 0x30)]
2024-12-03 13:18:58 +08:00
public class QuestCounterHandler : PacketHandler
2024-09-16 02:56:02 +08:00
{
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
{
2024-12-06 03:42:25 +08:00
//Not sure what this does yet
2024-09-21 12:35:09 +08:00
context.SendPacket(new Unk4901Packet());
context.SendPacket(new Unk0E65Packet());
context.SendPacket(new Unk0B22Packet());
2024-09-16 02:56:02 +08:00
}
}
}