PSO2SERVER/Server/Protocol/Handlers/0E-PartyHandler/0E-29-PlayerIsNotBusyState.cs

27 lines
856 B
C#
Raw Normal View History

2024-09-20 16:10:43 +08:00
using System;
using PSO2SERVER.Models;
using PSO2SERVER.Protocol.Packets;
2024-09-20 16:10:43 +08:00
namespace PSO2SERVER.Protocol.Handlers
2024-09-20 16:10:43 +08:00
{
[PacketHandlerAttr(0x0E, 0x29)]
2024-12-03 13:18:58 +08:00
public class PlayerIsNotBusyState : PacketHandler
2024-09-20 16:10:43 +08:00
{
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
{
if (context.Character == null)
return;
2024-09-22 00:08:44 +08:00
//var info = string.Format("[<--] 接收到的数据 (hex): {0} 字节", data.Length);
2024-09-20 16:10:43 +08:00
//Logger.WriteHex(info, data);
foreach (var c in Server.Instance.Clients)
{
2024-12-10 23:08:39 +08:00
if (c.Character == null || c.CurrentMap != context.CurrentMap)
2024-09-20 16:10:43 +08:00
continue;
2024-09-20 21:58:37 +08:00
c.SendPacket(new NewBusyStatePacket(context._account.AccountId, BusyState.NotBusy));
2024-09-20 16:10:43 +08:00
}
}
}
}