Ok heres my story. I got bored and started thinking about making programs with AutoIt and I came up with my Own WoW Help V1.0 it asks you for you User Name and Password. Dont worrie no data is stored source is below for proof. I just thought i would share with community try and get some ideas for a new project
so Download,Source and Virus scan is all at the bottom. Please tell me what you think and if you like it or not. Please dont flame me this is my first program. 
Code:
MsgBox(64,"Auto Login" , "You will be prompt for your WoW Username and Passowrd to auto login!")
$Username = InputBox("Auto Login", "Please enter your username")
$Password = InputBox("Auto Login", "Please enter your password")
#include <GUIConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("WoW Helper", 307, 306, 193, 125)
$Button1 = GUICtrlCreateButton("Auto Login", 24, 8, 129, 65, 0)
$User = GUICtrlCreateLabel($Username, 32, 104, 124, 25)
$Pass = GUICtrlCreateLabel($Password, 32, 136, 122, 25)
$Button2 = GUICtrlCreateButton("Quit", 200, 96, 97, 73, 0)
$Button3 = GUICtrlCreateButton("Test Login", 200, 8, 97, 65, 0)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
run("wow.exe")
sleep(10000)
send($Username)
sleep(2000)
send("{TAB}")
sleep(1000)
send($Password)
send("{ENTER}")
Exit
case $Button2
Exit
Case $Button3
run("notepad")
sleep(2000)
WinActivate("Untitled - Notepad")
Sleep(2000)
send($Username)
sleep(2000)
send("{TAB}")
sleep(1000)
send($Password)
send("{ENTER}")
Exit
EndSwitch
WEnd
DOWNLOAD NOW!
Virustotal. MD5: 60827a8894f4e76978cfd8db09269e34 Trojan.Win32.StartPage.deb
ENJOY 
EDIT: IT MUST BE IN WOW FOLDER IN ORDER TO START WOW I HAVE NOT CODED THAT SECTION. WILL COME IN NEXT RELESE