Doesn't really remove your RS pass - just changes it so unless you remember recoveries you can not log back onto RS
Just go to the RS pass change section, type in old pass, click new pass box, hit run
Useful for those times you just wanna quit RS forever, and you always manange to remember the password you typed in..
SCAR Code:
program RSpasswordChanger;
// Sick of RS and want to quit your account forever?
// Keep on chaning the password, but then remembering it again?
// Then here you go - this script will change your password to random characters!
// Unless you have recovery questions that you know, after you run this on Change Password, you won't ever be able to log onto your account again! :D
// Enjoy..
// By Hy71194
// PS: Also useful for other things you want to forget your password to, or for your worst enemy's account ;-)
var s:string;
j,c: integer;
const
Tab = True; // True will hit the Tab key after typing the first pass - so you don't have to click on the second confirm box.
Send = False; // True will hit enter after typing the pass. :D
begin
writeln('Click on Password Change slot 1');
wait(5000);
j := 10 + Random(8); // Minium pass length + Random(how many away if minium from max length)
for c := 0 to j do
s := s + Chr(Random(122 - 97) + 97 + 1);
sendkeys(s);
wait(100);
if Tab then
begin
KeyDown(9);
Wait(50+Random(100));
KeyUp(9);
end else
Writeln('click on second pass box!!!');
wait(5000);
sendkeys(s);
if Send then
begin
KeyDown(13);
Wait(50+Random(100));
KeyUp(13);
end;
ClearDebug;
//writeln(s); // Uncomment if you want to know what you just changed it to.
end.