sharp-chat/SharpChat/Packet/ChannelRankTooHighErrorPacket.cs

16 lines
430 B
C#
Raw Normal View History

2024-05-14 22:17:25 +00:00
using System;
namespace SharpChat.Packet {
public class ChannelRankTooHighErrorPacket : ServerPacket {
private readonly long Timestamp;
public ChannelRankTooHighErrorPacket() {
Timestamp = DateTimeOffset.Now.ToUnixTimeSeconds();
}
public override string Pack() {
return string.Format("2\t{0}\t-1\t1\frankerr\t{1}\t10010", Timestamp, SequenceId);
}
}
}