public ClientGuildChatEventArgs(GuildChatInfo i)
 {
     info = i;
 }
        public static GuildChatInfo RecvGuildChat(Packet p)
        {
            p.Skip(2);
            byte type = p.ReadByte();
            string message = p.ReadString();

            GuildChatInfo i = new GuildChatInfo
            {
                Type = type,
                Message = message
            };

            return i;
        }