Thread: Vb.Net Afk Bot

Results 1 to 11 of 11
  1. #1
    Swift14's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    110
    Reputation
    3
    Thanks
    5
    I am using this vb.net 2008/10 i have both i like 10 better anyways do i use
    Timer1.Start()
    Timer1.Stop()
    SendKeys.Send("{Space}")
    SendKeys.Send("{Enter}")
    Is this all i would need"?
    I have never made one just wanted to try.

    Just answer when someone has the chance thanks
    Last edited by Swift14; 03-25-2011 at 02:49 PM.

  2. #2
    Erinador's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    224
    Reputation
    14
    Thanks
    111
    My Mood
    Bored
    Ye, but I wouldn't put timer.stop and timer.start after one another, as well ... you should know.

  3. #3
    Swift14's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    110
    Reputation
    3
    Thanks
    5
    Ik i was showing codes buddy.

  4. #4
    edub18's Avatar
    Join Date
    Aug 2010
    Gender
    male
    Location
    Germany
    Posts
    146
    Reputation
    10
    Thanks
    12
    My Mood
    Bored
    Code:
    Timer1.Interval = 5000
    Code:
        Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
            My.Computer.Keyboard.SendKeys(" ")
        End Sub
    Just change " " to whatever key you want.

  5. #5
    Lyoto Machida's Avatar
    Join Date
    Jan 2011
    Gender
    male
    Location
    Far away with girls
    Posts
    3,734
    Reputation
    133
    Thanks
    1,621
    My Mood
    Aggressive
    For some games it dont work.

  6. #6
    Cryptonic's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    United Provinces of Canada
    Posts
    1,313
    Reputation
    44
    Thanks
    190
    My Mood
    Bored
    Quote Originally Posted by -Away View Post
    For some games it dont work.
    How about Combat Arms? I've been looking for an afk bot for awhile now...

  7. #7
    Swift14's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Posts
    110
    Reputation
    3
    Thanks
    5
    Yea ca-na whats itz for.

  8. #8
    Cryptonic's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    United Provinces of Canada
    Posts
    1,313
    Reputation
    44
    Thanks
    190
    My Mood
    Bored
    Quote Originally Posted by Swift14 View Post
    Yea ca-na whats itz for.
    Awesome, now you gotta add a quick join feature. There hasn't been an AFK bot out for months... Last one was User1 I believe...

  9. #9
    Stephen's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Location
    Engine.exe
    Posts
    4,689
    Reputation
    184
    Thanks
    1,149
    My Mood
    Aggressive
    You cannot do SendKeys in Combat Arms.

  10. #10
    CoOKiEbrEEd's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    USA
    Posts
    149
    Reputation
    10
    Thanks
    13
    My Mood
    Bored
    Some you would have to make it find the process. Or it won't work.

  11. #11
    Cryptonic's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    United Provinces of Canada
    Posts
    1,313
    Reputation
    44
    Thanks
    190
    My Mood
    Bored
    Maybe something like

    Process.GetProcessesByName("Engine.exe")

    I don't know... I've never done anything like this...

    (I have a feeling this isn't how you would get the process and make sure it exists...)
    Last edited by Cryptonic; 03-25-2011 at 04:31 PM.