示例#1
0
        public static bool Send(Objects.Client client, Constants.Direction direction)
        {
            TurnPacket p = new TurnPacket(client, direction);

            return(p.Send());
        }
示例#2
0
 private void uxHookProxySendServerTest_Click(object sender, EventArgs e)
 {
     TurnPacket p = new TurnPacket(client, Tibia.Constants.Direction.Down);
     MarkButton((Button)sender, p.Send(Packet.SendMethod.HookProxy));
 }
示例#3
0
 public static bool Send(Objects.Client client, Constants.Direction direction)
 {
     TurnPacket p = new TurnPacket(client, direction);
     return p.Send();
 }