Tag Archive > Autohotkey

Grid clicker script

I finished up my “grid clicker” script. it is intended to simplify testing of games where you have to click certain patterns (a grid). Typical facebook games like farmville or funfari are great examples of this. just download the file (here is the sourcecode), execute it, and an eye should appear in your task bar. [...]

Continue reading

, ,

Farmville

Farmvill can be a fun way to pass some time, but if your fields get to be a bit big clicking on every single field can get to be a bit tiresome. I found this autohotkey script in the depths of the internet. It simplifies the process greatly

Select All Code:1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
!^c::
GoSub GetFarmSq
GoSub Getfirstsq
 
i=1
 
SetMouseDelay, 0
 
cycle [...]

Continue reading

, ,