sharp-chat/SharpChat/Packet/CommandFormatErrorPacket.cs

11 lines
333 B
C#

namespace SharpChat.Packet {
public class CommandFormatErrorPacket : SockChatTimedS2CPacket {
public override string Pack() {
return string.Format(
"2\t{0}\t-1\t1\fcmdna\t{1}\t10010",
TimeStamp.ToUnixTimeSeconds(),
MessageId
);
}
}
}