Results 1 to 12 of 12
  1. #1
    DylanOwnsYou's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    In the air, rising higher and higher as I watch you crash.
    Posts
    379
    Reputation
    19
    Thanks
    82
    My Mood
    Cynical

    help me put hotkeys into my coding pelase

    here's my coding, can some1 help me?
    Public Class Form1

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Timer1.Interval = TextBox2.Text
    Timer1.Enabled = True
    End Sub

    Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
    Timer1.Interval = TextBox2.Text
    Timer1.Enabled = False
    End Sub

    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
    SendKeys.Send(TextBox1.Text)
    SendKeys.Send("{enter}")
    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
    End
    End Sub
    End Class

  2. #2
    Iamazn's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    141
    Reputation
    10
    Thanks
    85

  3. #3
    trevor206's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    324
    Reputation
    12
    Thanks
    107
    Quote Originally Posted by DylanOwnsYou View Post
    here's my coding, can some1 help me?
    Public Class Form1

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Timer1.Interval = TextBox2.Text
    Timer1.Enabled = True
    End Sub

    Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
    Timer1.Interval = TextBox2.Text
    Timer1.Enabled = False
    End Sub

    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
    SendKeys.Send(TextBox1.Text)
    SendKeys.Send("{enter}")
    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
    End
    End Sub
    End Class
    What are u trying to make if you tell me i guess i could help you.

  4. #4
    Iamazn's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    141
    Reputation
    10
    Thanks
    85
    Hes trying to make an auto typer.

  5. #5
    trevor206's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    324
    Reputation
    12
    Thanks
    107
    Make a new timer and delete your other code and put this and set the new timers interval to 1 and enable it.

    Code:
    Public Class Form1
    Private Declare Function GetAsyncKeyState Lib "user32"(ByVal vkey As Long) As Integer
    
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Timer1.Interval = TextBox2.Text
    Timer1.Enabled = True
    End Sub
    
    Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
    Timer1.Interval = TextBox2.Text
    Timer1.Enabled = False
    End Sub
    
    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
    SendKeys.Send(TextBox1.Text)
    SendKeys.Send("{enter}")
    End Sub
    
    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
    End
    End Sub
    
    Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As
    Dim starthotkey As Boolean starthotkey = GetAsyncKeyState(Keys.Insert) If starthotkey = True Then
    SendKeys.Send(TextBox1.Text)
    SendKeys.Send("{enter}")
    End If
    End Sub
    End Class
    Tell me if it works the hotkey for that is holding insert if it doesn't i'll go make one and see if it works.

  6. #6
    DylanOwnsYou's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    In the air, rising higher and higher as I watch you crash.
    Posts
    379
    Reputation
    19
    Thanks
    82
    My Mood
    Cynical
    nvm user1 helped me, now i need help with this crosshair hack. these are the codes for crosshairs, can some1 help me make the hotkeys f10 to start f12 to stop?

    Public Class Form1

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Form2.Show()
    Form3.Show()
    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
    Form2.Hide()
    Form3.Hide()
    End Sub
    End Class

  7. #7
    Zoom's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Your going on my 24/7 DDoS hit list.
    Posts
    8,552
    Reputation
    127
    Thanks
    5,970
    My Mood
    Happy

    Exclamation

    Quote Originally Posted by trevor206 View Post
    Make a new timer and delete your other code and put this and set the new timers interval to 1 and enable it.

    Code:
    Public Class Form1
    Private Declare Function GetAsyncKeyState Lib "user32"(ByVal vkey As Long) As Integer
    
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Timer1.Interval = TextBox2.Text
    Timer1.Enabled = True
    End Sub
    
    Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
    Timer1.Interval = TextBox2.Text
    Timer1.Enabled = False
    End Sub
    
    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
    SendKeys.Send(TextBox1.Text)
    SendKeys.Send("{enter}")
    End Sub
    
    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
    End
    End Sub
    
    Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As
    Dim starthotkey As Boolean starthotkey = GetAsyncKeyState(Keys.Insert) If starthotkey = True Then
    SendKeys.Send(TextBox1.Text)
    SendKeys.Send("{enter}")
    End If
    End Sub
    End Class
    Tell me if it works the hotkey for that is holding insert if it doesn't i'll go make one and see if it works.

    Donīt make it to 1 as interval it will LAAAAAAAAAAAAAAAAGGG.....

    set it as 50 and then it will work much better..
    -Rest in peace leechers-

    Your PM box is 100% full.

  8. #8
    trevor206's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    324
    Reputation
    12
    Thanks
    107
    Quote Originally Posted by hejsan1 View Post
    Donīt make it to 1 as interval it will LAAAAAAAAAAAAAAAAGGG.....

    set it as 50 and then it will work much better..
    It doesn't lag me at all.

    Quote Originally Posted by DylanOwnsYou View Post
    nvm user1 helped me, now i need help with this crosshair hack. these are the codes for crosshairs, can some1 help me make the hotkeys f10 to start f12 to stop?

    Public Class Form1

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Form2.Show()
    Form3.Show()
    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
    Form2.Hide()
    Form3.Hide()
    End Sub
    End Class
    ok i'll try.

  9. #9
    trevor206's Avatar
    Join Date
    Dec 2008
    Gender
    male
    Posts
    324
    Reputation
    12
    Thanks
    107
    Quote Originally Posted by DylanOwnsYou View Post
    nvm user1 helped me, now i need help with this crosshair hack. these are the codes for crosshairs, can some1 help me make the hotkeys f10 to start f12 to stop?

    Public Class Form1

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Form2.Show()
    Form3.Show()
    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
    Form2.Hide()
    Form3.Hide()
    End Sub
    End Class
    ok make two new timers enable them and set their interval to 1.

    delete all the code you have and paste this or just fill in what you dont have.
    Code:
    Public Class Form1
        Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vkey As Long) As Integer
    
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            Form2.Show()
            Form3.Show()
        End Sub
    
        Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
            Form2.Hide()
            Form3.Hide()
        End Sub
    
        Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
            Dim starthotkey As Boolean
            starthotkey = GetAsyncKeyState(Keys.F10)
            If starthotkey = True Then
                Form2.Show()
                Form3.Show()
            End If
        End Sub
    
        Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer2.Tick
            Dim stophotkey As Boolean
            stophotkey = GetAsyncKeyState(Keys.F12)
            If stophotkey = True Then
                Form2.Hide()
                Form3.Hide()
            End If
        End Sub
    End Class

  10. #10
    Katie_Perry's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    3,082
    Reputation
    31
    Thanks
    175
    My Mood
    Sneaky
    Hmmm, i need help with this stuff...I am so bad with codes.

  11. #11
    DylanOwnsYou's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    In the air, rising higher and higher as I watch you crash.
    Posts
    379
    Reputation
    19
    Thanks
    82
    My Mood
    Cynical
    sorry i am done those

  12. #12
    Zoom's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Your going on my 24/7 DDoS hit list.
    Posts
    8,552
    Reputation
    127
    Thanks
    5,970
    My Mood
    Happy

    Wink

    Quote Originally Posted by trevor206 View Post
    It doesn't lag me at all.


    ok i'll try.
    If you are unluckey it will frezze your mouse and you need to press CTRL-ALT-DELETE and then end your spammer or ...
    -Rest in peace leechers-

    Your PM box is 100% full.

Similar Threads

  1. Can anyone help me get combat arms source codes that arent patched?
    By nikith988 in forum General Game Hacking
    Replies: 2
    Last Post: 11-05-2009, 10:48 PM
  2. Need help with some long forgotten VB code...
    By ROUGHS3X in forum Combat Arms Help
    Replies: 0
    Last Post: 10-29-2009, 07:45 PM
  3. Guise why don't you put this into consideration?
    By Obey in forum Art & Graphic Design
    Replies: 85
    Last Post: 07-17-2009, 05:57 PM
  4. [Help] How to go into Recruit Channel?
    By bigboy19940 in forum Combat Arms Hacks & Cheats
    Replies: 5
    Last Post: 08-19-2008, 03:06 PM
  5. anyone help with scope hotkey
    By ll Asura ll in forum Visual Basic Programming
    Replies: 7
    Last Post: 01-24-2008, 09:37 PM

Tags for this Thread