[VB.NET]How to make an auto login for noobs. [Updated] menu

Shout-Out

User Tag List

Results 1 to 13 of 13
  1. #1
    Araredon's Avatar Contributor
    Reputation
    89
    Join Date
    Feb 2009
    Posts
    141
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [VB.NET]How to make an auto login for noobs. [Updated]

    Please dont laugh at my method, its quite stupid but it works. Your end product will look something like this (Note the picture in background is my desktop, my actual program is just a button"


    Lets start by making a new program, you can call it Auto Login.
    Add (lol i know) 7 timers.
    1 button
    2 textboxes
    Now in textbox1 change the text property to your username.
    In the second textbox change the text property to your password (might wanna toss a password char on that just for safety.)
    Heres what mine looks like so far:

    now make your form small so that you cant see the textboxes and you can only see the button. Now the fun part
    Open Button one and type
    Code:
    System.Diagnostics.Process.Start("C:\program files\world of warcraft\wow.exe")
    Timer1.start
    The code for Timer1 Is
    Code:
            
            Timer2.Start()
            Timer1.Stop()
    Timer2
    Code:
            Timer3.Start()
            Timer2.Stop()
    Timer3

    Code:
            SendKeys.Send(TextBox1.Text)
            Timer4.Start()
            Timer3.Stop()
    Timer4

    Code:
            SendKeys.Send("{TAB}")
            Timer5.Start()
            Timer4.Stop()
    Timer5

    Code:
            SendKeys.Send(TextBox2.Text)
            Timer6.Start()
            Timer5.Stop()
    Timer6

    Code:
            SendKeys.Send("{ENTER}")
            Timer7.Start()
            Timer6.Stop()
    Timer7

    Code:
    Me.Close



    Now you need to change the intervals for each timer
    Timer 1 = 1000
    Timer 2 = 5000
    Timer 3 = 1000
    Timer 4 = 1000
    Timer 5 = 1000
    Timer 6 = 1000
    Timer 7 = 4000
    If your computer is too slow and these speeds are not slow enough, adjust them accordingly. The intervals are in milliseconds and found in the properties:




    I've been using this technique for over 2 months and havent gotten banned.
    I asked a GM today he said it probably ISNT bannable, but im posting on the wow forums just to make sure

    Last edited by Araredon; 02-19-2009 at 10:41 AM.

    [VB.NET]How to make an auto login for noobs. [Updated]
  2. #2
    Araredon's Avatar Contributor
    Reputation
    89
    Join Date
    Feb 2009
    Posts
    141
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    An alternative to using a button would be using the form_load event to start the timer. If you know what your doing otherwise just stick with my guide.

  3. #3
    Krillere's Avatar Contributor
    Reputation
    112
    Join Date
    Nov 2007
    Posts
    668
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ok, i dont know much about VB ( Just wanna try it out ) And i couldnt get this to work, but when i took the
    System.Diagnostics.Process.Start("C:\program files\world of warcraft\wow.exe")
    Timer2.Start()
    Timer1.Stop()
    and took this code in the Button instead it worked. As you told, i added it in Timer1, but it works in the Button. Dont know if i did something wrong with the rest of the script or you made a mistake in the guide :-) Thanks for it tho, helped me. + Rep

    BTW, just gonna add the complete source that worked for me. You might have to change the timers and the wow location.
    Code:
    Public Class Form1
    
        Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
            Timer2.Start()
            Timer1.Stop()
        End Sub
    
        Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer2.Tick
            Timer3.Start()
            Timer2.Stop()
        End Sub
    
        Private Sub Timer3_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer3.Tick
            SendKeys.Send(TextBox1.Text)
            Timer4.Start()
            Timer3.Stop()
        End Sub
    
        Private Sub Timer4_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer4.Tick
            SendKeys.Send("{TAB}")
            Timer5.Start()
            Timer4.Stop()
        End Sub
    
        Private Sub Timer5_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer5.Tick
            SendKeys.Send(TextBox2.Text)
            Timer6.Start()
            Timer5.Stop()
        End Sub
    
        Private Sub Timer6_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer6.Tick
            SendKeys.Send("{Enter}")
            Timer7.Start()
            Timer6.Stop()
        End Sub
    
        Private Sub Timer7_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer7.Tick
            Me.Close()
        End Sub
    
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            System.Diagnostics.Process.Start("C:\Users\Public\Games\World of Warcraft\Wow.exe")
            Timer2.Start()
            Timer1.Stop()
        End Sub
    End Class
    Last edited by Krillere; 02-19-2009 at 05:30 AM.

  4. #4
    Araredon's Avatar Contributor
    Reputation
    89
    Join Date
    Feb 2009
    Posts
    141
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Krillere View Post
    Ok, i dont know much about VB ( Just wanna try it out ) And i couldnt get this to work, but when i took the
    and took this code in the Button instead it worked. As you told, i added it in Timer1, but it works in the Button. Dont know if i did something wrong with the rest of the script or you made a mistake in the guide :-) Thanks for it tho, helped me. + Rep

    BTW, just gonna add the complete source that worked for me. You might have to change the timers and the wow location.
    Code:
    Public Class Form1
    
        Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
            Timer2.Start()
            Timer1.Stop()
        End Sub
    
        Private Sub Timer2_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer2.Tick
            Timer3.Start()
            Timer2.Stop()
        End Sub
    
        Private Sub Timer3_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer3.Tick
            SendKeys.Send(TextBox1.Text)
            Timer4.Start()
            Timer3.Stop()
        End Sub
    
        Private Sub Timer4_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer4.Tick
            SendKeys.Send("{TAB}")
            Timer5.Start()
            Timer4.Stop()
        End Sub
    
        Private Sub Timer5_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer5.Tick
            SendKeys.Send(TextBox2.Text)
            Timer6.Start()
            Timer5.Stop()
        End Sub
    
        Private Sub Timer6_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer6.Tick
            SendKeys.Send("{Enter}")
            Timer7.Start()
            Timer6.Stop()
        End Sub
    
        Private Sub Timer7_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer7.Tick
            Me.Close()
        End Sub
    
        Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            System.Diagnostics.Process.Start("C:\Users\Public\Games\World of Warcraft\Wow.exe")
            Timer2.Start()
            Timer1.Stop()
        End Sub
    End Class
    Made a typo in the guide, im fixing it now.
    EDIT: Looked at your code, thats how its supposed to be, i just messed up in the guide
    Last edited by Araredon; 02-19-2009 at 10:42 AM.

  5. #5
    JoeBiden's Avatar Contributor
    Reputation
    153
    Join Date
    Aug 2007
    Posts
    498
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Easier to import system.threading and use Thread.Sleep(milisecondhere) each time you wanna pause

  6. #6
    Krillere's Avatar Contributor
    Reputation
    112
    Join Date
    Nov 2007
    Posts
    668
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Remember to say "Thanks alot Krillere, you really helped me with my guide. I love you Krillere." Thats important xD

  7. #7
    Cephalopod's Avatar Member
    Reputation
    5
    Join Date
    Sep 2008
    Posts
    85
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by JoeBiden View Post
    Easier to import system.threading and use Thread.Sleep(milisecondhere) each time you wanna pause
    Sleeping the main thread is a bad idea.

  8. #8
    Araredon's Avatar Contributor
    Reputation
    89
    Join Date
    Feb 2009
    Posts
    141
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Meh, when i first did it i wasnt really thinking straight i just thought of this method first and decided to stick with it

  9. #9
    JoeBiden's Avatar Contributor
    Reputation
    153
    Join Date
    Aug 2007
    Posts
    498
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Cephalopod View Post
    Sleeping the main thread is a bad idea.
    Only if you use it too much.. then program will lock up :P

  10. #10
    JuJuBoSc's Avatar Banned for scamming CoreCoins Purchaser
    Reputation
    1019
    Join Date
    May 2007
    Posts
    922
    Thanks G/R
    1/3
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Using system.threading with Application.doevents is better imo.

  11. #11
    Garosie's Avatar Active Member
    Reputation
    18
    Join Date
    Jul 2007
    Posts
    68
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    if u ask me , i would say that the best solution would be to make a timer with 100 interval (Timer1) and a label (Label1) and write
    Code:
     Dim InstallPath As String = My.Computer.Registry.GetValue("HKEY_LOCAL_MACHINE\SOFTWAREb\lizzard entertainment\world of warcraft", "InstallPath", "WoW.exe")
            Label1.Text = InstallPath
            Diagnostics.Process.Start(InstallPath + "/WoW.exe")
            
            Timer2.start
            Timer1.stop
    and that was the code in timer 1, What this will do, is that its gonna find out where wow are placed on your computer, after it writes it down in a label and opens the Directory that label1 tells, and then it goes further and opens WoW.exe
    now make timer 2 with a interval on 20000 (20 seconds) and make it like this :
    Code:
    Sendkeys.Send(Textbox1.text)
    Sendkeys.Send("{TAB}")
    Sendkeys.Send(Textbox2.Text)
    Last edited by Garosie; 03-21-2009 at 04:18 AM.

  12. #12
    Garosie's Avatar Active Member
    Reputation
    18
    Join Date
    Jul 2007
    Posts
    68
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    And ofcause the 2 Textboxes as maker of this tutorial said.

  13. #13
    Jonthe838's Avatar Contributor
    Reputation
    83
    Join Date
    Aug 2008
    Posts
    373
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    how did u remove the X buttons and the name line? ^^
    and how do u do so that u cant see what is written? ^^ Lol found it ^^ i must be blind
    Last edited by Jonthe838; 04-07-2009 at 06:49 AM.
    Lines of Coding: |||||||||| Goal 1000
    Current: 677 Achived Goals: 500 Lines


Similar Threads

  1. [How-To] any one knows how to make a auto sniping bot so it only snipe at 100iv club
    By azazelvobiscum in forum Pokemon GO Hacks|Cheats
    Replies: 0
    Last Post: 08-25-2016, 12:15 PM
  2. [VB.NET] How to make an anti afk bot
    By Araredon in forum Programming
    Replies: 5
    Last Post: 05-12-2009, 05:47 AM
  3. [VB.NET]How to make a GTA 4 script
    By visitor in forum Programming
    Replies: 4
    Last Post: 04-21-2009, 11:16 AM
  4. How to make an auto updater! For noobs :)
    By EmiloZ in forum Programming
    Replies: 4
    Last Post: 03-27-2009, 03:54 PM
  5. How To Make A Auto Taking Npc
    By Cripto in forum World of Warcraft Emulator Servers
    Replies: 1
    Last Post: 08-04-2008, 12:45 PM
All times are GMT -5. The time now is 09:20 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search