18 lines
544 B
C#
18 lines
544 B
C#
namespace SharpChat.PacketsS2C {
|
|
public class CommandNotAllowedErrorS2CPacket : SockChatTimedS2CPacket {
|
|
private readonly string CommandName;
|
|
|
|
public CommandNotAllowedErrorS2CPacket(string commandName) {
|
|
CommandName = commandName;
|
|
}
|
|
|
|
public override string Pack() {
|
|
return string.Format(
|
|
"2\t{0}\t-1\t1\fcmdna\f/{1}\t{2}\t10010",
|
|
TimeStamp.ToUnixTimeSeconds(),
|
|
CommandName,
|
|
MessageId
|
|
);
|
|
}
|
|
}
|
|
}
|