Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Generates a new random Password with a standard-size of 8.
- // If you want special characters in it, set the 3rd parameter to true.
- stock GeneratePassword(dest[], len = 8, bool:SpecialCharacters = false)
- {
- new Passwort[62][] = {'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z','A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z','0','1','2','3','4','5','6','7','8','9'};
- new sChars[14][] = {'.', ',', '-', '_', '!', 'ยง', '$', '%', '&', '/', '(', ')', '=', '?'};
- for(new i=0; i<len; i++)
- {
- if(SpecialCharacters == true) {
- if(random(5) == 2) dest[i] = sChars[random(sizeof(sChars))];
- else dest[i] = Passwort[random(sizeof(Passwort))];
- }
- else dest[i] = Passwort[random(sizeof(Passwort))];
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement