Results 1 to 4 of 4
  1. #1
    crazybeast's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    12
    Reputation
    10
    Thanks
    0

    how to use code source???

    how do i use this source to make a hack i don't no anything please help.



    Code:

    //©®o$s ƒi®E™
    Public Class Form1
    Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vkey As Long) As Integer
    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)
    Private Const mouseclickup = 4
    Private Const mouseclickdown = 2
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

    End Sub

    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Hotkeys.Tick
    Dim Hotkey1 As Boolean
    Hotkey1 = GetAsyncKeyState(Keys.F5)
    If Hotkey1 = True Then
    Clicks.Start()

    End If
    Dim Hotkey2 As Boolean
    Hotkey2 = GetAsyncKeyState(Keys.F6)
    If Hotkey2 = True Then
    Clicks.Stop()

    End If
    End Sub

    Private Sub Click_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Clicks.Tick
    Clicks.Interval = TextBox1.Text
    mouse_event(mouseclickdown, 0, 0, 0, 0)
    mouse_event(mouseclickup, 0, 0, 0, 0)
    End Sub

    Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged

    End Sub
    Private Sub Label3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label3.Click

  2. #2
    Root.X's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    25
    Reputation
    10
    Thanks
    24
    Visual Basic 6 [Just Learn Before]

  3. #3
    skulhead's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    714
    Reputation
    0
    Thanks
    158
    My Mood
    Cheerful
    This is autoclicker...

  4. #4
    Gab's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Posts
    6,716
    Reputation
    1755
    Thanks
    1,543
    Do not leech, sir.