示例#1
0
 private void uxProxySendClientTest_Click(object sender, EventArgs e)
 {
     AnimatedTextPacket p = new AnimatedTextPacket(client);
     p.Message = "Testing";
     p.Location = client.PlayerLocation;
     p.Color = TextColor.Platinum;
     MarkButton((Button)sender, p.Send(Packet.SendMethod.Proxy));
 }
示例#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();
 }
示例#3
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());
        }