Guest ischmael Posted March 6, 2005 Posted March 6, 2005 Hello, i will write a litte script that make a auto login in World of Warcraft with username and Passwort with click on the Login Button. I make it so: WinWaitActive("WORLD OF WARCRAFT") ; Username MouseClick ( "Username" , 480, 470 , 1 , 9999 ) Send("username") ; Passwort MouseClick ( "Passwort" , 480, 431 , 1 , 10 ) Send("passwort") MouseClick ( "Login" , 480, 546 , 1 , 10 ) But the first problem it that the Mouseclick on Login not enough is. World of Warcraft not assume this the click is to low. the second problem is that the mouse movement to slow is and the Send command to fast I hope u can help me?!
Pickled Posted March 6, 2005 Posted March 6, 2005 (edited) WinActivate("World of Warcraft") Sleep(2500) ; Username MouseClick ( "left" , 480, 470 ) Send("username") Sleep(1500) ; Passwort MouseClick ( "left" , 480, 431 ) Send("passwort") Sleep(1500) ;Click Accept MouseClick ( "left" , 480, 546 ) Edited March 6, 2005 by Pickled
therks Posted March 6, 2005 Posted March 6, 2005 Yeah I dunno about you, but my mouse doesn't have a "Login" button. My AutoIt Stuff | My Github
Pickled Posted March 6, 2005 Posted March 6, 2005 Yeah I dunno about you, but my mouse doesn't have a "Login" button. <{POST_SNAPBACK}>ROFL Hey we all had to start somewhere
steveR Posted March 7, 2005 Posted March 7, 2005 Try adding some Sleep() commands to help slow things down. AutoIt3 online docs Use it... Know it... Live it...MSDN libraryglobal Help and SupportWindows: Just another pane in the glass.
Guest ischmael Posted March 7, 2005 Posted March 7, 2005 Hello, Yes, im a noob Thanks for help i try it
Moderators SmOke_N Posted March 7, 2005 Moderators Posted March 7, 2005 If your "Login" button is not capturing the mouse click, then I would try this: WinActivate("World of Warcraft") Sleep(2500) ; Username MouseClick ( "left" , 480, 470 ) Send("username") Sleep(1500) ; Passwort MouseClick ( "left" , 480, 431 ) Send("passwort") Sleep(1500) ;Login Mousemove ( 480, 546 ) Mousedown ("left") Mouseup ("left") If I understand your post (and that's not easy), I ran into a similar situation and this is how I fixed it. Hope this helps Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now