Hello.. I Wanted to make a script that,when you run the script,automaticly runs CQ, and only writes password(account ID is saved) and login on.
But There was a problem.. So here it is:
1.Run Conquer
2.MouseClick High Definition
3.Wait(Sleep) 20000
4.MouseClick On the box for the passwords, the account id isn't needed,because is saved .Then Sleep(1000)
5.Send("password")
6.MouseClick(login)
So Thats how i made it.. but when comes to the step 5, theres a problem! When Mouse Pointer will click on the Password Entry Box, then goes the Send Command("password)" , but it only writes 6-7 characters, and my passsword got 10 chars, and then when it clicks Login, it says invalid pass.. so any help how do i made it? Is it because the AUTOIT it types so fast? i tryed with
Quote:
send("p")
sleep(1000)
send("a")
sleep(1000)
send ("s")
sleep(1000)
send("s")
sleep 1000 etc etc etc till it comletes the phrase PASSWORD
|
But Still Happenin the same.. Any Suggestion?
Code Of AutoLogin(account ID of the Character on conquer was saved into the Account ID box, so thats why i didnt need to write the Accound ID and x,y are coordinates for mouse Click)
:
Code:
Run("play.exe")
WinActivate("Play")
MouseClick("left",X,Y,1,10) ; [I]<<The Mouse Click For Coordinates Of Clicking"High Definition"[/I]
sleep(20000)
WinWaitActive("Conquer Online")
MouseClick("left",x,y,1,10) ; <<The Mouse Click For Coordinates Of Password Entry Box
sleep(1000)
send("Password")
sleep(1000)
mouseclick("left",x,y,1,10) ; << The Mouse Click For Coordinates Of LOGIN Button