Don't click here unless you want to be banned.

LSL Wiki : Bobbyb30Zohari

HomePage :: PageIndex :: RecentChanges :: RecentlyCommented :: UserSettings :: You are crawl338.us.archive.org
I'm a fairly skilled scripter. If you have questions feel free to post.

I'm a forum and wiki troll. =D


Oddly I can't create a new page...so I'll simply post this script here.

Random Password Generator

// www.lsleditor.org  by Alphons van der Heijden (SL: Alphons Jano)
//Bobbyb30 Zohari (C) 2008
//August 31,2008
//Password builder
integer numberofpasswords = 50;
integer passwordlength = 36;

//Random Password Generator
//please note that a good random number generator will determine the strength of the password
//////////////
integer ASCIIlength;//too lazy
string ASCII = "!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~";

string randomletter()
{
    integer random = (integer)llFrand(ASCIIlength);
    return llGetSubString(ASCII,random,random);
}

string passwordbuild()
{
    integer counter = 0;
    string password;
    do
    {
        password = password + randomletter();
    }while(++counter < passwordlength);
    return password;
}

default
{
    state_entry()
    {
        llOwnerSay("Building " + (string)numberofpasswords + " passwords............");
        ASCIIlength = llStringLength(ASCII);
        integer counter;
        do
        {
            llOwnerSay(passwordbuild());
        }while(++counter < numberofpasswords);
        llOwnerSay("Password Build Complete  ...................");
    }
}
There is no comment on this page. [Display comments/form]