Anonymous wrote:
Free wrote:
RButton::
{
Click
MouseGetPos, xposi, yposi
yposi+=30
Xposi+=10
Click %xposi%, %yposi%
yposi-=30
xposi-=10
Sleep, 500
Click, 500, 500
MouseMove, %xposi%, %yposi%
}
return
^1::
{
exitapp
}
Hey Guys!
Can you help me with that script please. Unfortunately, it doens't work. 've got no experience with AutoHotkey. Maybe something with Farmville has changed but my script doens't take the final click on "Accept" at the box with the text "Are you sure you want ....". I hope you know how to handle that!
See you!
try this...
Code:
RButton::
{
Click
MouseGetPos, xposi, yposi
yposi+=30
Xposi+=10
Click %xposi%, %yposi%
yposi-=30
xposi-=10
Sleep, 500
Click, 450, 450
MouseMove, %xposi%, %yposi%
}
return
^1::
{
exitapp
}