Results 1 to 3 of 3
  1. #1
    [Banned]mark0108's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    UK,Manchester
    Posts
    1,106
    Reputation
    16
    Thanks
    1,039
    My Mood
    Relaxed

    Cool How to Make a simple Autockicker

    Make Sure You Have: Microsoft Visual Basic 2008 Express Edition.
    What we will do in this tutorial?
    A simple Auto Clicker.
    Hotkeys.
    Interval
    & more!
    I will split this tutorial in 3 parts.1 part is for the button,2 part is for the GUI and things like that and 3 part is for coding.

    First Part:

    First,Open Microsoft Visual Basic 2008 Express Edition.
    When it open press Ctrl+N.
    Choose Windows Forms Applications and name it Simple Auto Clicker,and click OK.
    You will need 3 Labels.
    The label1 text should be F5 = Start
    The label2 text should be F6 = Stop
    The label3 text should be Speed of the clicks.

    Than you will need 1 Textbox.
    This should be under Speed of the clicks or beside it.

    Than you will need 2 Timers.
    Change Timer1 name to Hotkeys.
    Enable do it False.
    And Interval do it 1.

    Change Timer2 name to Clicks.
    Than just change Interval do 1000.

    Part 2:
    Click on Form1.
    And go on Properties.
    Change Maximize Box,Minimize Box and Show Icon to False.
    Than change TopMost to True.
    Don't do the background(GUI)so big do it like 300 , 150.

    Part 3:
    So this will be the coding.
    Double Click On Form1 and Delete Everything in there.

    Than copy and paste this Code:
    Code:
    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
    
        End Sub
    End Class

    Press F5 and it should start Debugging.
    Than Save it.

    That's all Ow Yh And Thank Me Please.

  2. The Following User Says Thank You to [Banned]mark0108 For This Useful Post:

    ahmedell (08-20-2010)

  3. #2
    ahmedell's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    In CF Boxes -- "Glitching"
    Posts
    219
    Reputation
    10
    Thanks
    45
    My Mood
    Bored
    complicated :S, but thanks anyway

  4. #3
    lauwy's Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    522
    Reputation
    19
    Thanks
    1,106
    Leeched? or did you made it your self?
    Need some help to get back on track

    Find the pointer to the D3D9 Device (Not usefull for Cross)

    https://www.mpgh.net/forum/242-crossf...ice-lauwy.html

    Fix olly if scanning doesn't work

    https://www.mpgh.net/forum/242-crossf...ing-fails.html

    Unpack cshell.dll

    https://www.mpgh.net/forum/242-crossf...shell-dll.html

Similar Threads

  1. *Tut* How To Make A Simple Notepad
    By u1111u in forum Programming Tutorials
    Replies: 2
    Last Post: 01-31-2010, 11:58 PM
  2. how to make very simple chams in C++
    By L96A1_ghille in forum Combat Arms Hacks & Cheats
    Replies: 16
    Last Post: 08-02-2009, 07:23 AM
  3. Show Me How To Make A Simple WallHack Cod4 1.7
    By lovemommy in forum Programming Tutorial Requests
    Replies: 0
    Last Post: 06-14-2009, 05:03 PM
  4. How to make a simple Car Signature
    By SpaWn in forum Tutorials
    Replies: 10
    Last Post: 04-23-2009, 05:26 PM
  5. How to make a simple grunge tutorial
    By SpaWn in forum Tutorials
    Replies: 2
    Last Post: 04-21-2009, 05:30 PM