Page 1 of 1

[Release] Stable-Fast-Autoclicker!

Posted: Tue Jun 08, 2010 10:22 am
by NoobHacker
Here i release a stable auto clicker,fast clicking.
When i was urgently need an auto clicker i search google,and find something like press 5 times per second,max 50 times and offer you to buy full version what a fcking ass!!!This autoclick can press 64-times per second.(Although i use do loop in multithread,it also 64 times per second)
This autoclicker is most satisfacted for me,(Dont work for maple story,i use noob mouse_event api)

written using vb.net

Image
Image
Image
Image
Image
press F12 to start and stop..
if you see this post in jbtalks goodhermit95 is me dont call me noob leecher lol.

Skydrive mirror
32-bit .net Framework 2.0
64-bit .net framework 2.0

Re: [Release] Stable-Fast-Autoclicker!

Posted: Wed Jun 09, 2010 12:21 am
by wizme
nice, but will be nicer if you release the source or make a tutorial on how to do it =)

Re: [Release] Stable-Fast-Autoclicker!

Posted: Thu Jun 10, 2010 5:03 pm
by NoobHacker
wizme wrote:nice, but will be nicer if you release the source or make a tutorial on how to do it =)
lol i noticed that it works on maplestory ,with latest hackshield version xD
i would release the API and how to spam click and do not release whole source because
my story...last time a people asked me to release source,and then he downloaded the source and edit the "About" information to him
and he post at another forum...say this program he made himself...HE IS KINDA NOOB...

API here VB.NET :)

Code: Select all

'VB API Declare
'Private/Public Declare Sub/Function Functioname Lib DLL alias FunctionNameInDll(Parameters) Return Value(For Functions only,sub don't return value.
Private Declare Function GetAsyncKeyState Lib "user32.dll" Alias "GetAsyncKeyState"(Byval vKey As Long) As Integer //This is hotkey detect API
Private Declare Sub mouse_event Lib "user32" (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
Public Const MOUSEEVENTF_LEFTUP = &H4
Public Const MOUSEEVENTF_MIDDLEDOWN = &H20
Public Const MOUSEEVENTF_MIDDLEUP = &H40
Public Const MOUSEEVENTF_RIGHTDOWN = &H8
Public Const MOUSEEVENTF_RIGHTUP = &H10
Public Const MOUSEEVENTF_MOVE = &H1