sharp-chat/SharpChat/Packet/UserChannelJoinLogPacket.cs

26 lines
678 B
C#
Raw Normal View History

using System;
namespace SharpChat.Packet {
public class UserChannelJoinLogPacket : ServerPacket {
private readonly long Timestamp;
private readonly string UserName;
public UserChannelJoinLogPacket(
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\fjchan\f{1}\t{2}\t0\t10010",
Timestamp,
UserName,
SequenceId
);
}
}
}