2024-11-27 18:05:53 +08:00
|
|
|
|
using PSO2SERVER.Protocol.Packets;
|
2024-09-16 02:56:02 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2024-11-27 18:05:53 +08:00
|
|
|
|
namespace PSO2SERVER.Protocol.Handlers
|
2024-09-16 02:56:02 +08:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
[PacketHandlerAttr(0x11, 0x1D)]
|
|
|
|
|
public class GuildInfoRequest : PacketHandler
|
|
|
|
|
{
|
|
|
|
|
#region implemented abstract members of PacketHandler
|
|
|
|
|
|
|
|
|
|
public override void HandlePacket(Client context, byte flags, byte[] data, uint position, uint size)
|
|
|
|
|
{
|
|
|
|
|
var reader = new PacketReader(data);
|
|
|
|
|
reader.BaseStream.Seek(0xC, SeekOrigin.Begin);
|
|
|
|
|
var id = reader.ReadUInt32();
|
|
|
|
|
|
|
|
|
|
foreach (var client in ServerApp.Instance.Server.Clients)
|
|
|
|
|
{
|
2024-11-25 23:33:41 +08:00
|
|
|
|
if (client.Character.CharacterID == id)
|
2024-09-16 02:56:02 +08:00
|
|
|
|
{
|
2024-12-11 19:54:48 +08:00
|
|
|
|
var infoPacket = new GuildInfoPacket(context);
|
2024-09-16 02:56:02 +08:00
|
|
|
|
context.SendPacket(infoPacket);
|
2024-11-25 23:33:41 +08:00
|
|
|
|
Logger.Write("[NFO] Sent guild info to " + client.Character.CharacterID);
|
2024-09-16 02:56:02 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|