I want to do this in a loop:
1.) left mouse click on specific coords > pick up an item > check
2.) left mouse click on specific coords > drop the item > not working, it drops where my cursor is
3.) left mouse click on specific coords > press a button > check
PHP Code:
ControlClick(GUICtrlRead($title), "", "", "left", 1, $item[1], $item[2])
Sleep(500)
ControlClick(GUICtrlRead($title), "", "", "left", 1, $drop[1], $drop[2])
Sleep(500)
ControlClick(GUICtrlRead($title), "", "", "left", 1, $button[1], $button[2])
My question is, how can i drop to the specific coordinates, not to the cursor position?
Thanks!







