Password Generator
Platform: mIRC
Published Jan 03, 2007
Updated Jan 03, 2007
Firstly, create 2 new txt files in your mIRC Directory named 'numa' & 'alt'<br>
<br>
For the txt file 'alt' you can add any alt characters that you think would be useful in a password and for the txt file 'numa' add all of the shift number characters.
<br>
Once the mIRC script is in your remotes, type /gen.pw
<br>
It'll open a custom window and generate a random, uncrackable password. This is my first window script so please don't be harsh ;)
alias gen.pw {
if ($window(PwdGenerator) == $null) {
window -a @PwdGenerator -1 -1 -1 -1
aline @PwdGenerator 3Password generator created by Syntax of irc.bahajainc.com
aline @PwdGenerator -
}
set %generated.pw $rand(a,z) $+ $rand(0,9) $+ $read(numa.txt) $+ $rand(0,9) $+ $rand(a,z) $+ $read(alt.txt) $+ $rand(0,24) $+ $rand(g,z) $+ $rand(g,z) $+ $read(numa.txt) $+ $rand(0,9) $+ $rand(a,g) $+ $rand(0,4) $+ $read(alt.txt)
aline @PwdGenerator 4Generating password ..
timer 1 3 aline @PwdGenerator %generated.pw
timer 1 3 unset %generated.pw
}