Hello all

. Ive finally had some time to create another free script sample that you can modify and use. This script sample randomly generators all kind of characters instead of just numbers. It also allows you to easily add more characters to the generate list.
Below is only a very basic version of the code. To view or download the full code which include help full comments,A couple more feature, more included characters visit my website at:
http://freescriptsahk.googlepages.com/Samples
Code:
Random, CharacterLength, 1, 63
lOOP
{
Random, randomChar, 1, 4
randomCharCount += 1
If randomChar = 1
{
rc = %rc%a
}
else if randomChar = 2
{
rc = %rc%b
}
else if randomChar = 3
{
rc = %rc%c
}
else if randomChar = 4
{
rc = %rc%d
}
if randomCharCount = %CharacterLength%
{
goto, CharacterLengthReached
}
}
return
CharacterLengthReached:
msgbox,68,[Random Charater Generator],%rc%
return