How do you auto accept invites on background apps?
Using AHK,
wintitle = Trove
SetTitleMatchMode, 2
IfWinExist %wintitle%
{
loop
{
Random, num, 2000, 4000
SetControlDelay -1
ControlClick, x717 y400, %wintitle%,,,, NA
sleep, %num%
}
}
Return
For some reason, the click doesn't respond on the background trove app. I think the problem is that the mouse needs to move in-game before it can accept a click. I tested this without any scripts and looks right.
1) I send in an invitation to my main to join and click accept.
2) I press yes.
3) I keep mouse in exact same position and send in another invite.
4) Nothing happens, regardless of how many times I click.
5) Only after moving the mouse at least a tiny bit, the game will respond to the click
I also tried the different click variations of control click and none seems to work with coordinates.
wintitle = Trove
SetTitleMatchMode, 2
IfWinExist %wintitle%
{
loop
{
Random, num, 2000, 4000
SetControlDelay -1
ControlClick, x717 y400, %wintitle%,,,, NA
sleep, %num%
}
}
Return
For some reason, the click doesn't respond on the background trove app. I think the problem is that the mouse needs to move in-game before it can accept a click. I tested this without any scripts and looks right.
1) I send in an invitation to my main to join and click accept.
2) I press yes.
3) I keep mouse in exact same position and send in another invite.
4) Nothing happens, regardless of how many times I click.
5) Only after moving the mouse at least a tiny bit, the game will respond to the click
I also tried the different click variations of control click and none seems to work with coordinates.


