2024-09-20 16:10:43 +08:00
|
|
|
|
using System;
|
|
|
|
|
using PSO2SERVER.Models;
|
2024-11-27 18:05:53 +08:00
|
|
|
|
using PSO2SERVER.Protocol.Packets;
|
2024-09-20 16:10:43 +08:00
|
|
|
|
|
2024-11-27 18:05:53 +08:00
|
|
|
|
namespace PSO2SERVER.Protocol.Handlers
|
2024-09-20 16:10:43 +08:00
|
|
|
|
{
|
|
|
|
|
[PacketHandlerAttr(0x0E, 0x28)]
|
2024-12-03 13:18:58 +08:00
|
|
|
|
public class PlayerIsBusyState : 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.Busy));
|
2024-09-20 16:10:43 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|