how clicking can help earn repuattion? anyway something like this must work :)
Code:
#include <Misc.au3>
$dll = DllOpen("user32.dll")
WinWaitActive ("Element Client")
WinSetTitle("Element Client", "", "press F12 to set click position")
While 1
If _IsPressed("7B", $dll) Then
$pos = MouseGetPos()
ExitLoop
EndIf
WEnd
WinSetTitle("press F12 to set click position", "" , "press F12 to stop clicking")
While 1
MouseClick ( "left", $pos[0] , $pos[1] )
For $i=1 to 16
If _IsPressed("7B", $dll) Then ExitLoop 2
Sleep (250)
Next
WEnd
WinWaitActive ("press F12 to stop clicking")
WinSetTitle("press F12 to stop clicking" , "", "Element Client")
DllClose($dll)
P.S. if by any acident you dont have autoit I compile it to exe for you ;)