PSO2SERVER/Server/Protocol/Handlers/0B-QuestHandler/0B-15-QuestCounterAvailableHander.cs

39 lines
961 B
C#
Raw Normal View History

using PSO2SERVER.Json;
using PSO2SERVER.Protocol.Packets;
2024-09-10 00:31:40 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
2024-09-16 02:56:02 +08:00
using System.Threading.Tasks;
2024-09-10 00:31:40 +08:00
namespace PSO2SERVER.Protocol.Handlers
2024-09-10 00:31:40 +08:00
{
2024-09-16 02:56:02 +08:00
[PacketHandlerAttr(0x0B, 0x15)]
2024-12-03 13:18:58 +08:00
public class QuestCounterAvailableHander : PacketHandler
2024-09-10 00:31:40 +08:00
{
public struct AvailableQuestsRequestPacket
{
public uint unk1;
}
2024-09-10 00:31:40 +08:00
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
{
if (context == null)
return;
string jsonFilePath4 = "data\\quests\\Story Quests\\EP1\\700000 - An Encounter with Xion\\data.json";
var quest = JsonRead.DeserializeJson<QuestData>(jsonFilePath4);
var quests = new List<QuestData>();
quests.Add(quest);
2024-09-16 02:56:02 +08:00
context.SendPacket(new QuestAvailablePacket(quests));
2024-09-10 00:31:40 +08:00
}
}
2024-09-16 02:56:02 +08:00
2024-09-10 00:31:40 +08:00
}