22 lines
546 B
C#
22 lines
546 B
C#
using PSO2SERVER.Packets.PSOPackets;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace PSO2SERVER.Packets.Handlers
|
|
{
|
|
[PacketHandlerAttr(0x0B, 0x15)]
|
|
class QuestCounterAvailableHander : PacketHandler
|
|
{
|
|
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
|
{
|
|
PacketWriter writer = new PacketWriter();
|
|
|
|
context.SendPacket(new QuestAvailablePacket());
|
|
}
|
|
}
|
|
|
|
}
|