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