sharp-chat/SharpChat/Packet/CommandFormatErrorPacket.cs

16 lines
418 B
C#
Raw Normal View History

using System;
namespace SharpChat.Packet {
public class CommandFormatErrorPacket : ServerPacket {
private readonly long Timestamp;
public CommandFormatErrorPacket() {
Timestamp = DateTimeOffset.Now.ToUnixTimeSeconds();
}
public override string Pack() {
return string.Format("2\t{0}\t-1\t1\fcmdna\t{1}\t10010", Timestamp, SequenceId);
}
}
}