Jump to content

Recommended Posts

Posted

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 :)

Posted

  Shevilie said:

Not to bother you.. but whats the purpose with autologin, if you have to enter username and password anyways??

I think the point is that you put YOUR username and pass right there and use the script to start and log in.

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
  • Recently Browsing   0 members

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