25 lines
669 B
C#
25 lines
669 B
C#
using System;
|
|
|
|
namespace SharpChat.Packet {
|
|
public class UserConnectLogPacket : ServerPacket {
|
|
private readonly long Timestamp;
|
|
private readonly string UserName;
|
|
|
|
public UserConnectLogPacket(
|
|
DateTimeOffset timestamp,
|
|
string userName
|
|
) {
|
|
Timestamp = timestamp.ToUnixTimeSeconds();
|
|
UserName = userName;
|
|
}
|
|
|
|
public override string Pack() {
|
|
return string.Format(
|
|
"7\t1\t{0}\t-1\tChatBot\tinherit\t\t0\fjoin\f{1}\t{2}\t0\t10010",
|
|
Timestamp,
|
|
UserName,
|
|
SequenceId
|
|
);
|
|
}
|
|
}
|
|
}
|