Esempio n. 1
0
        public static bool Send(Objects.Client client, string textId, Location location, Color color, ClientFont font, string text)
        {
            DisplayTextPacket p = new DisplayTextPacket(client);

            p.TextId = textId;
            p.Location = location;
            p.Color = color;
            p.Font = font;
            p.Text = text;

            return p.Send();
        }
        public static bool Send(Objects.Client client, string textId, Location location, Color color, ClientFont font, string text)
        {
            DisplayTextPacket p = new DisplayTextPacket(client);

            p.TextId   = textId;
            p.Location = location;
            p.Color    = color;
            p.Font     = font;
            p.Text     = text;

            return(p.Send());
        }