0000 Posted November 2, 2007 Posted November 2, 2007 Ok I have written a program for easy money in the internet... And I need examplace something like: Input User/Password.. But password I want to send, so somebody send to me his Username, I genarate a pw and I told to him, and he can use program... I think generator something like Username: abcd Password 4321 or Username: abcd Pasword bcda4 because[4letters] can somebody give example or good ideas ?
weaponx Posted November 2, 2007 Posted November 2, 2007 MsgBox(0,"", genPassword(8)) Func genPassword($length) $array = StringSplit("ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789","") $newPassword = "" For $X = 1 to $length $newPassword &= $array[Random (1, $array[0], 1)] Next return $newPassword EndFunc
Nahuel Posted November 2, 2007 Posted November 2, 2007 MsgBox(0,"", genPassword(8,1)) Func genPassword($length,$caps) $array = StringSplit("ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789","") $newPassword = "" For $X = 1 to $length If $Caps Then If Random(0,1,1)=1 Then $newPassword &= $array[Random (1, $array[0], 1)] Else $newPassword &=StringLower( $array[Random (1, $array[0], 1)]) EndIf Else $newPassword &= $array[Random (1, $array[0], 1)] EndIf Next return $newPassword EndFunc
0000 Posted November 2, 2007 Author Posted November 2, 2007 Ok that's good, but problem is that the password will be for one nick... Not for every nick... So there is the problem, how to made it for every nick...
Moderators SmOke_N Posted November 2, 2007 Moderators Posted November 2, 2007 (edited) Ok that's good, but problem is that the password will be for one nick...Not for every nick...So there is the problem, how to made it for every nick...<sarcasm>Since your making money off your code, I'd be happy to help you with it for money as well (Only seems fair).</sarcasm> Edited November 2, 2007 by SmOke_N 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.
BigDod Posted November 2, 2007 Posted November 2, 2007 Have a look here Time you enjoyed wasting is not wasted time ......T.S. Elliot Suspense is worse than disappointment................Robert Burns God help the man who won't help himself, because no-one else will...........My Grandmother
MuffettsMan Posted November 7, 2007 Posted November 7, 2007 (edited) <3 <3 lol ty ty ty you would have laughed your butt off if you saw the crude keygen i was starting to build Edited November 7, 2007 by zhenyalix Don't let that status fool you, I am no advanced memeber!
weaponx Posted November 7, 2007 Posted November 7, 2007 <3 <3 lol ty ty ty you would have laughed your butt off if you saw the crude keygen i was starting to build We still have the opportunity if you post it.
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