Exemplo n.º 1
0
 public static bool Send(Objects.Client client, string message, Objects.Location position, TextColor color)
 {
     AnimatedTextPacket p = new AnimatedTextPacket(client);
     p.Message = message;
     p.Location = position;
     p.Color = color;
     return p.Send();
 }
Exemplo n.º 2
0
        public static bool Send(Objects.Client client, string message, Objects.Location position, TextColor color)
        {
            AnimatedTextPacket p = new AnimatedTextPacket(client);

            p.Message  = message;
            p.Location = position;
            p.Color    = color;
            return(p.Send());
        }