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