Results 1 to 15 of 15

Thread: RS Pass Remover

  1. #1
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default RS Pass Remover

    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.


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  2. #2
    Join Date
    Mar 2007
    Posts
    937
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    This seems kinda stupid tbh... No offence


    -Ashur
    Exam period.

  3. #3
    Join Date
    Nov 2007
    Location
    The Netherlands
    Posts
    1,490
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i don't really get the point of this script
    if you want to quit rs.. do it in the fun way:
    use a autospammer which breaks all the rules ^^

  4. #4
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    Quote Originally Posted by Ashur2Good View Post
    This seems kinda stupid tbh... No offence


    -Ashur
    I didn't ask for your opinion I find it quite useful, especially if you manange to hack your worst enemies password


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  5. #5
    Join Date
    Mar 2008
    Location
    Indiana
    Posts
    192
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    But wouldn't you want to know the password so you could drop all of his stuff?

  6. #6
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    It would be nicer to just change his pass and have him recover in a few months


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  7. #7
    Join Date
    Mar 2008
    Location
    Indiana
    Posts
    192
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    But I though he was our worst enemy.

    [Off-Topic] Your clown scares me [/Off-Topic]

  8. #8
    Join Date
    Jun 2007
    Location
    Wednesday
    Posts
    2,446
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    Telling people in RS your pass is an easier way for it to get changed and put you off playing again when you recover it and have no items of worth.
    By reading this signature you agree that mixster is superior to you in each and every way except the bad ways but including the really bad ways.

  9. #9
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    Quote Originally Posted by mixster View Post
    Telling people in RS your pass is an easier way for it to get changed and put you off playing again when you recover it and have no items of worth.
    On RS? That's no fun getting past the "cant type pass into chat" thing..


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  10. #10
    Join Date
    May 2008
    Location
    California
    Posts
    41
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Hy71194 aka Harry View Post
    I didn't ask for your opinion I find it quite useful, especially if you manange to hack your worst enemies password
    But can't you just type in "f784mf46g" somewhere, paste it into both boxes, and delete it?

    Usefullness: Near Zero, but nice coding h):

  11. #11
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    Quote Originally Posted by Jimmy5410 View Post
    But can't you just type in "f784mf46g" somewhere, paste it into both boxes, and delete it?

    Usefullness: Near Zero, but nice coding h):
    Ohai, quite a nice bump you did there..05-26-2008 09:35 AM
    Please read the thread's date before posting in it.


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  12. #12
    Join Date
    Jul 2008
    Posts
    0
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Stupid tbh...Why waste you time making a script like that?

  13. #13
    Join Date
    Jan 2008
    Location
    NC, USA.
    Posts
    4,429
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Quote Originally Posted by x m4g3 x View Post
    Stupid tbh...Why waste you time making a script like that?
    Stupid tbh...Why waste you time making a post like that?
    Quote Originally Posted by irc
    [00:55:29] < Guest3097> I lol at how BenLand100 has become noidea
    [01:07:40] <@BenLand100> i'm not noidea i'm
    [01:07:44] -!- BenLand100 is now known as BenLand42-
    [01:07:46] <@BenLand42-> shit
    [01:07:49] -!- BenLand42- is now known as BenLand420
    [01:07:50] <@BenLand420> YEA

  14. #14
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    Because he was making a spam to get 10 posts


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  15. #15
    Join Date
    Mar 2007
    Location
    Alberta, Canada
    Posts
    1,780
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default

    I'd like it if you changed your name back to hy711 whatever.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Draynor Willow Remover
    By Quickmarch in forum First Scripts
    Replies: 84
    Last Post: 06-10-2009, 04:03 AM
  2. RS navbar remover - ever been anoyed by..
    By man slaughter in forum News and General
    Replies: 7
    Last Post: 05-13-2008, 09:11 AM
  3. jagex_cache Remover?
    By NoUserName in forum RuneScape News and General
    Replies: 3
    Last Post: 04-08-2008, 10:15 PM
  4. SRL ID and Pass
    By tomwatson14 in forum News and General
    Replies: 5
    Last Post: 02-12-2008, 11:25 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •