我目前正在实施一个在 WAKFU 中采集草药种子的自动化程序。我做了很多研究,几乎完成了。我唯一的问题是鼠标点击。当我在“收获图标”上单击鼠标时,鼠标似乎忽略了收获图标并按下了地面,为此我的角色移动而不是收获
请参考我上传的这个视频。
鼠标点击代码
public void MouseClickLeft()
{
int x = Cursor.Position.X;
int y = Cursor.Position.Y;
mouse_event(MOUSEEVENTF_LEFTDOWN, x, y, 0, 0);
mouse_event(MOUSEEVENTF_LEFTUP, x, y, 0, 0);
}
public void MouseClickRight()
{
int x = Cursor.Position.X;
int y = Cursor.Position.Y;
mouse_event(MOUSEEVENTF_RIGHTDOWN, x, y, 0, 0);
mouse_event(MOUSEEVENTF_RIGHTUP, x, y, 0, 0);
}
Point point3 = new Point( points[0].X +60 , points[0].Y - 60);
LinearSmoothMove(point3, delayt);
MouseClickLeft();
如果您需要更多代码,请告诉我。
谢谢!