| View previous topic :: View next topic |
| Author |
Message |
xXJa50nXx
Joined: 19 Oct 2006 Posts: 32 Location: mo
|
Posted: Wed Jan 03, 2007 11:06 pm Post subject: Mouse Password |
|
|
This is just a small script i made for fun.
use a sequence of mouse clicks to type in your password.
left click is = to 1
Mouse wheel click is = to 2
Right click is = to 3
pass is where you put the mouse sequence and password it where you put the real password
Jason
| Code: |
pass=13213
passmake=
password=1234
~lbutton::
~^::passmake=
!Lbutton::
passmake=%passmake%1
gosub check
return
!Mbutton::
passmake=%passmake%2
gosub check
return
!Rbutton::
passmake=%passmake%3
gosub check
return
check:
if (pass=passmake)
{
loop ;this is so it will wait until you let go go alt
{
getkeystate,state,Alt
if state = d
{
}
else
{
sendinput %password%
passmake=
break
}
}
}
return
|
|
|
| Back to top |
|
 |
twhyman
Joined: 07 Dec 2005 Posts: 218
|
Posted: Tue Jan 09, 2007 11:09 am Post subject: |
|
|
nice one but i missed the part where you need to press alt in order to get the keys to work
thanks
twhyman |
|
| Back to top |
|
 |
|