22 lines
625 B
C#
22 lines
625 B
C#
using System;
|
|
|
|
namespace SharpChat.Packet {
|
|
public class CommandNotAllowedErrorPacket : ServerPacket {
|
|
private readonly long Timestamp;
|
|
private readonly string CommandName;
|
|
|
|
public CommandNotAllowedErrorPacket(string commandName) {
|
|
Timestamp = DateTimeOffset.Now.ToUnixTimeSeconds();
|
|
CommandName = commandName;
|
|
}
|
|
|
|
public override string Pack() {
|
|
return string.Format(
|
|
"2\t{0}\t-1\t1\fcmdna\f/{1}\t{2}\t10010",
|
|
Timestamp,
|
|
CommandName,
|
|
SequenceId
|
|
);
|
|
}
|
|
}
|
|
}
|