I have decided to end my status as leecher. Ive made two programs in VB, Clique and Clicker. (Sorry for the names)
Clique:
Download is RapidShare: Easy Filehosting
Mirror DOWNLOAD NOW!
Scan: Virustotal. MD5: 33c587eb1475d006040a4839a4f32e07
- It lets you enter coordinates of a position on the screen and use a hotkey to go to click at those coordinates.
- Coordinates are the pixels on the screen, so if I entered 1024,768 it would go to the bottom right corner of my screen
Clicker:
Download is RapidShare: Easy Filehosting
Mirror is DOWNLOAD NOW!
Scan: VirusTotal - Free Online Virus and Malware Scan - Result
- This just clicks rapidly.
- MS = Milliseconds
- Second / 1000 = Millisecond
- It says on the more thing that it was made by souper, thats just my other name
- If you enter 500, then hit F10(the hotkey), it will click every 1/2 second
PS me for the source
It there are other programs out there similar, sorry
I did write these programs.
If you are going to flame, FLAME CONSTRUCTIVELY. Eg, dont say, "You suck", say fix __________
The click VB.NET code i used is
Code:Public Declare Auto Function SetCursorPos Lib "User32.dll" (ByVal X As Integer, ByVal Y As Integer) As Long Public Declare Auto Function GetCursorPos Lib "User32.dll" (ByRef lpPoint As Point) As Long Public Declare Sub mouse_event Lib "user32" Alias "mouse_event" (ByVal dwFlags As Long, ByVal dx As Long, ByVal dy As Long, ByVal cButtons As Long, ByVal dwExtraInfo As Long) Public Const MOUSEEVENTF_LEFTDOWN = &H2 ' left button down Public Const MOUSEEVENTF_LEFTUP = &H4 ' left button up Public Const MOUSEEVENTF_MIDDLEDOWN = &H20 ' middle button down Public Const MOUSEEVENTF_MIDDLEUP = &H40 ' middle button up Public Const MOUSEEVENTF_RIGHTDOWN = &H8 ' right button down Public Const MOUSEEVENTF_RIGHTUP = &H10 ' right button up