17 lines
532 B
C#
17 lines
532 B
C#
using System;
|
|
|
|
namespace SharpChat.Packet {
|
|
public class KickBanNotAllowedErrorPacket : ServerPacket {
|
|
private readonly long Timestamp;
|
|
private readonly string UserName;
|
|
|
|
public KickBanNotAllowedErrorPacket(string userName) {
|
|
Timestamp = DateTimeOffset.Now.ToUnixTimeSeconds();
|
|
UserName = userName;
|
|
}
|
|
|
|
public override string Pack() {
|
|
return string.Format("2\t{0}\t-1\t1\fkickna\f{1}\t{2}\t10010", Timestamp, UserName, SequenceId);
|
|
}
|
|
}
|
|
}
|