Jump to content

world of warcraft auto login help needed


dutty
 Share

Recommended Posts

i need help with my code for auto ligin on world of warcraft,

i can get it to open wow,

write in username ,

password,

and select character

(this was a a tall order for my first try at "coding")

but what i need is for a window to come up which asks for your username and you write it in there , i need th e same with pass too,

and character number (how far down) so it uses down for every however much number you put in

the script so far is

; Prompt the user to run the script - use a Yes/No prompt (4 - see help file)
$answer = MsgBox(4, "matts autologin", "this will run world of warcraft and log in and selct first charcter.  Run?")


; Check the user's answer to the prompt (see the help file for MsgBox return values)
; If "No" was clicked (7) then exit the script
If $answer = 7 Then
    MsgBox(0, "matts autologin", "OK.  Bye!")
    Exit
EndIf



; Run world of warcraft
run("C:\Program Files\World of Warcraft\WoW.exe") 

Sleep(16999)

; Wait for wow to become active - it is titled "World Of Warcraft" on English systems
WinWaitActive("World of Warcraft")




; Now that the wow window is active type some text
Send("USERNAME{Tab}PASWORD{enter}")

Sleep(10009)

Send("{enter}")

Sleep(10009)

send("forward")


; Finished!

please reply with help

matt :)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...