Jump to content

Recommended Posts

Posted

I am trying to use the send command to type something that the user has typed.

Send("$name$pass{TAB}$pass{ENTER}")

Whenever i do that, it types it as is. what do i need to do to type the value of the variable.

Posted

I am trying to use the send command to type something that the user has typed.

Send("$name$pass{TAB}$pass{ENTER}")

Whenever i do that, it types it as is. what do i need to do to type the value of the variable.

change it to

Send($name$pass{TAB}$pass{ENTER})

Gotta get rid of quotes :)

Posted

I tried that, it gave me an error. Unable to parse.

Actually, to send variables, you might have to do each separatly

Send($name)
Send($pass)
Send(""{TAB}")
Send($pass)
Send("{ENTER}")

It was because the "tab" and "enter" had to be in quotes, but variables cant

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...