mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
33 lines
1.0 KiB
C#
33 lines
1.0 KiB
C#
using System.IO;
|
|
using System.Text;
|
|
|
|
using FFXIVClassic.Common;
|
|
|
|
namespace FFXIVClassic_Map_Server.packets.send.supportdesk
|
|
{
|
|
class FaqListResponsePacket
|
|
{
|
|
public const ushort OPCODE = 0x01D0;
|
|
public const uint PACKET_SIZE = 0x2B8;
|
|
|
|
public static SubPacket BuildPacket(uint playerActorID, string[] faqsTitles)
|
|
{
|
|
byte[] data = new byte[PACKET_SIZE - 0x20];
|
|
|
|
using (MemoryStream mem = new MemoryStream(data))
|
|
{
|
|
using (BinaryWriter binWriter = new BinaryWriter(mem))
|
|
{
|
|
for (int i = 0; i < faqsTitles.Length; i++)
|
|
{
|
|
binWriter.Seek(0x80 * i, SeekOrigin.Begin);
|
|
binWriter.Write(Encoding.ASCII.GetBytes(faqsTitles[i]), 0, Encoding.ASCII.GetByteCount(faqsTitles[i]) >= 0x80 ? 0x80 : Encoding.ASCII.GetByteCount(faqsTitles[i]));
|
|
}
|
|
}
|
|
}
|
|
|
|
return new SubPacket(OPCODE, playerActorID, data);
|
|
}
|
|
}
|
|
}
|