sharp-chat/SharpChat/Packet/MessageBroadcastPacket.cs

23 lines
612 B
C#
Raw Normal View History

using System;
namespace SharpChat.Packet {
2024-05-14 22:17:25 +00:00
public class MessageBroadcastPacket : ServerPacket {
private readonly long Timestamp;
private readonly string Body;
2024-05-14 22:17:25 +00:00
public MessageBroadcastPacket(string body) {
Timestamp = DateTimeOffset.Now.ToUnixTimeSeconds();
Body = body;
}
public override string Pack() {
return string.Format(
"2\t{0}\t-1\t0\fsay\f{1}\t{2}\t10010",
Timestamp,
2024-05-19 21:02:17 +00:00
SockChatUtility.SanitiseMessageBody(Body),
SequenceId
);
}
}
}