dmollico Posted November 7, 2008 Posted November 7, 2008 I needed a way to create a random alphanumeric password and modified the current autoit random stuff to do what I needed it to do. ;################################# ;Create Seed ;################################## Do If Random() < 0.5 Then If Random(0,1,1) = 0 Then $seed = $seed & Random(5,10,1) If Random(0,1,1) = 1 Then $seed = $seed & Random(0,4,1) $Letter = Chr(Random(Asc("A"), Asc("Z"), 1)) $seed = $seed & $Letter Else If Random(0,1,1) = 1 Then $seed = $seed & Random(5,10,1) If Random(0,1,1) = 0 Then $seed = $seed & Random(0,4,1) $Letter = Chr(Random(Asc("a"), Asc("z"), 1)) $seed = $seed & $Letter Endif Until (StringLen($seed) > 6) obviously you can make the until variable a variable itself so you can specify the length. I just wanted to post this for anyone that needed it. I couldn't find one on the forums. Enjoy, let me know if you like it. I don't normally post but it's nice to hear stuff you make is useful!
AlmarM Posted November 7, 2008 Posted November 7, 2008 Cool ^^, Mayby you could take a look at my Password Generator in my sig AlmarM Minesweeper A minesweeper game created in autoit, source available. _Mouse_UDF An UDF for registering functions to mouse events, made in pure autoit. 2D Hitbox Editor A 2D hitbox editor for quick creation of 2D sphere and rectangle hitboxes.
dmollico Posted November 7, 2008 Author Posted November 7, 2008 Definately neat! I used mine inside of a non-gui script to just spit out a value into a inputbox for the user to use (or not use) as part of a encryption process. thanks though!
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