sharp-chat/SharpChat/Packet/ChannelCreatePacket.cs

27 lines
845 B
C#
Raw Normal View History

2024-05-19 21:02:17 +00:00
namespace SharpChat.Packet {
public class ChannelCreatePacket : SockChatS2CPacket {
private readonly string ChannelName;
private readonly bool ChannelHasPassword;
private readonly bool ChannelIsTemporary;
2022-08-30 15:00:58 +00:00
public ChannelCreatePacket(
string channelName,
bool channelHasPassword,
bool channelIsTemporary
) {
ChannelName = channelName;
ChannelHasPassword = channelHasPassword;
ChannelIsTemporary = channelIsTemporary;
2022-08-30 15:00:58 +00:00
}
2024-05-10 15:24:43 +00:00
public override string Pack() {
2024-05-10 17:28:52 +00:00
return string.Format(
"4\t0\t{0}\t{1}\t{2}",
2024-05-19 21:02:17 +00:00
SockChatUtility.SanitiseChannelName(ChannelName),
ChannelHasPassword ? 1 : 0,
ChannelIsTemporary ? 1 : 0
2024-05-10 17:28:52 +00:00
);
2022-08-30 15:00:58 +00:00
}
}
}