This is a program that will let you make a custom auto-login. It will do the following:
* Open up worldofwarcraft
* Enter both your username and password
* Login!
This will be done by using an autoit script. It is very simple to use!
First download Autoit v3 at AutoIt v3 - Automate and Script Windows Tasks - For Free!
Then you need to open your Script Writer. It is located in your AutoIt3's folder, called SciTE. You can also go to start>programs>AutoitV3>SciTE Script Editor to access the editor. Then add this script:
Now, press File -> Save As -> Login.au3Code:Run("C:\Program Files\World of Warcraft\WoW.exe") # Put wherever your WoW is located here. Mine on default is C: Sleep("7500") # Waits for a while until it sends your account information Send("USERNAME") # Place your WoW account name inside of the parentheses Send("{Tab}") # Flips down to the password field Send("PASSWORD") # Enters in your password Send("{ENTER}") # Presses log-in for you!
^ Make sure you add '.au3' or this will NOT work!
Run it, and have a free Auto-Login! =)