Jump to content

Recommended Posts

Posted

I had recently made a code so it would automatically log myself in a website. It had also gotten a captsha recently. I was wondering how i would make a text box that had an input option to where once i entered the captsha and pressed ok then it would enter the code into the necessary input box on the website.

I've just been using this

;pop up question

$answer = MsgBox(4, "Vote", "Do you want to vote for Bear and Orisci now?" & @LF & "Must have tab 1 open")

If $answer = 7 Then

Exit

EndIf

If $answer = 6 Then

;opens molten wow home page

shellexecute ("https://www.molten-wow.com/#content-top")

sleep (3000)

;clicks on username input

MouseClick ( "left" , 214, 595 , 2 , 0 )

send ("user")

;clicks on password input

send ("{tab}")

send ("pass")

;goes to caption

send ("{tab}")

EndIf

Posted

;pop up question
$answer = MsgBox(4, "Vote", "Do you want to vote for Bear and Orisci now?" & @LF & "Must have tab 1 open")
If $answer = 7 Then
Exit
EndIf
If $answer = 6 Then
;opens molten wow home page
shellexecute ("https://www.molten-wow.com/#content-top")
sleep (3000)
;clicks on username input
MouseClick ( "left" , 214, 595 , 2 , 0 )
send ("user")
;clicks on password input
send ("{tab}")
send ("pass")
$Capcha = InputBox("Capcha","Enter Capcha")
;goes to caption
send ("{tab}")
send ("$Capcha")

EndIf

AutoIt Absolute Beginners    Require a serial    Pause Script    Video Tutorials by Morthawt   ipify 

Monkey's are, like, natures humans.

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
×
×
  • Create New...