我目前正在實施一個自動程序,拾取WAKFU的草藥種子。 我做了很多研究,差不多完成了。我遇到的唯一問題是點擊鼠標。當我點擊「收穫圖標」上的鼠標時,似乎鼠標忽略了收獲圖標並按下了地面,爲此我的角色移動而不是收穫點擊WAKFU C#
請參考我上傳的視頻。
鼠標點擊
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();
請告訴我,如果你需要更多的代碼。
謝謝!