2024-05-14 19:11:09 +00:00
|
|
|
|
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() {
|
2024-05-19 21:02:17 +00:00
|
|
|
|
return string.Format(
|
|
|
|
|
"2\t{0}\t-1\t1\fcmdna\f/{1}\t{2}\t10010",
|
|
|
|
|
Timestamp,
|
|
|
|
|
CommandName,
|
|
|
|
|
SequenceId
|
|
|
|
|
);
|
2024-05-14 19:11:09 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|