PSO2SERVER/Server/Protocol/Handlers/0B-QuestHandler/0B-CD-AcceptStoryQuestHandler.cs

34 lines
1.0 KiB
C#
Raw Normal View History

2024-09-21 15:40:13 +08:00
using System;
using PSO2SERVER.Models;
using PSO2SERVER.Protocol.Packets;
2024-09-21 15:40:13 +08:00
using PSO2SERVER.Party;
namespace PSO2SERVER.Protocol.Handlers
2024-09-21 15:40:13 +08:00
{
[PacketHandlerAttr(0x0B, 0xCD)]
2024-12-03 13:18:58 +08:00
public class AcceptStoryQuestHandler : PacketHandler
2024-09-21 15:40:13 +08:00
{
public struct AcceptStoryQuestPacket
{
public uint name_id;
public uint unk;
}
2024-09-21 15:40:13 +08:00
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
{
2024-09-22 00:08:44 +08:00
//var info = string.Format("[<--] 接收到的数据 (hex): {0} 字节", data.Length);
2024-09-21 15:40:13 +08:00
//Logger.WriteHex(info, data);
var reader = new PacketReader(data, position, size);
var pkt = reader.ReadStruct<AcceptStoryQuestPacket>();
2024-09-21 15:40:13 +08:00
Logger.Write("任务编号: " + pkt.name_id + " unk: " + pkt.unk);
2024-09-21 15:40:13 +08:00
PartyManager.Instance.CreateNewParty(context);
2024-09-21 15:40:13 +08:00
// 告诉客户端切换到加载界面
//context.SendPacket(new LoadingScreenTransitionPacket());
2024-09-21 15:40:13 +08:00
}
}
}