using System; using System.Collections.Generic; using System.Text; namespace SharpChat.Packet { public class FloodWarningPacket : ServerPacket { public override IEnumerable Pack() { StringBuilder sb = new(); sb.Append('2'); sb.Append('\t'); sb.Append(DateTimeOffset.Now.ToUnixTimeSeconds()); sb.Append("\t-1\t0\fflwarn\t"); sb.Append(SequenceId); sb.Append("\t10010"); yield return sb.ToString(); } } }