Page 3 of 8 FirstFirst 12345 ... LastLast
Results 51 to 75 of 186

Thread: [RS2] Ban yourself fast! UPDATED!

  1. #51
    Join Date
    Oct 2006
    Location
    New Zealand
    Posts
    423
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by da_professa View Post
    Long time I haven't played runescape.. I think I'll start off again with this script.. So what did u say.. It gets 99 mining in a day? :P
    got me to 99 in 10 mins, 99 blackmarks that is

  2. #52
    Join Date
    Mar 2007
    Location
    UK
    Posts
    69
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    make sure u delete .dat file, or ja"geeks" will knowits really you + theyll know ur
    other acc's

  3. #53
    Join Date
    Sep 2006
    Location
    New Jersey, USA
    Posts
    5,347
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    Currently making usernames 'Ban Clan 0 - X many that I can do tonight'

    PM me for a username/password
    Interested in C# and Electrical Engineering? This might interest you.

  4. #54
    Join Date
    Mar 2006
    Posts
    13,241
    Mentioned
    228 Post(s)
    Quoted
    267 Post(s)

    Default

    Quote Originally Posted by V3-C View Post
    make sure u delete .dat file, or ja"geeks" will knowits really you + theyll know ur
    other acc's
    do on unsigned client...duh
    STOP PM'ING ME

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

    Default

    lol i used this but i only got muted for ever


    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!

  6. #56
    Join Date
    Mar 2006
    Posts
    13,241
    Mentioned
    228 Post(s)
    Quoted
    267 Post(s)

    Default

    lol ron i think u need to update for a failsafe just incase its perm muted...cause ur script is all based of text banning, now you just need it to non verbal things to get i banned just incase
    STOP PM'ING ME

  7. #57
    Join Date
    Feb 2007
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    lol sweet ill be there if u setup time and date sounds fun

  8. #58
    Join Date
    Feb 2007
    Location
    SparklesProd.com
    Posts
    2,406
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    lol, this is a hilarious script :P

  9. #59
    Join Date
    Sep 2006
    Location
    West U.S.
    Posts
    2,172
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    lol tried it and got muted.... not banned... i wondered why?

    They are sisters...
    Runescape Classic

  10. #60
    Join Date
    Nov 2006
    Posts
    173
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    set a time, a date and a place and I am there!!!!!!
    hillarious!

  11. #61
    Join Date
    Oct 2006
    Location
    I'm a figment of your imagination
    Posts
    422
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Got a slight problem: It gives me an access violation when I'm trying to run v. 4. Help greatly appreciated, I'm trying to get it to work.

    It's been a while... but I'm BACK!!!

  12. #62
    Join Date
    Apr 2006
    Location
    I live in NH
    Posts
    611
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Only perm muted? I guess they can now just recognize all the sayings. Make sure to change them.

    If you make your own, just post them, and I'll put them up on the first post. A good 3 or 4 different sayings would be nice.

    And botmaster. Weird that you get that error. I don't seem to get it. Try redownloading and going over the steps once again. An error can occur anywhere. If the problem still occurs then, sorry man.

  13. #63
    Join Date
    Oct 2006
    Location
    I'm a figment of your imagination
    Posts
    422
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    It reoccurs. Says priviliged call when it tries setting the array length of the strings .

    Anyways, got a reccomendation: Try making it so you can load a list of phrases from a textfile. Here's some useful functions/proc's I made for my file access system a while ago:

    SCAR Code:
    //FileNo must be a global var of type integer
    //All files use the relative path of a script, meaning the wordlist must be
    //in same directory as script

    function ReadFile(RelativePath : string) : string;
    begin
      FileNo := OpenFile(ScriptPath + RelativePath, true);
      If FileNo > -1 then
      begin
        If not(ReadFileString(FileNo, Result, FileSize(FileNo))) then
          Result := 'error';
        CloseFile(FileNo);
      end else Result := 'error'
    end;

    //Write or overwrite a file. Returns true if successfull.
    function WriteFile(RelativePath, Content : string) : boolean;
    begin
      Result := true;
      FileNo := RewriteFile(ScriptPath + RelativePath, true);
      If FileNo > -1 then
      begin
        If not(WriteFileString(FileNo, Content)) then
          Result := false;
        CloseFile(FileNo);
      end else Result := false;
    end;

    //Add something to a file
    function AppendFile(RelativePath, Content : string) : boolean;
    begin
      Result := true;
      If not(ReadFile(RelativePath) = 'error') then
      WriteFile(RelativePath, (ReadFile(RelativePath) + Content))
      else Result := false;
    end;

    //Read a line of a file
    function ReadFileLine(RelativePath : string; line : integer) : string;
    var
      currentline : integer;
      filebuffer  : string;
    begin
      currentline := line;
      filebuffer := ReadFile(RelativePath);
      If line = 0 then
      begin
        delete(filebuffer, pos(#13+#10, filebuffer), length(filebuffer))
        Result := filebuffer
      end else
      begin
        repeat
        delete(filebuffer, 1, pos(#10, filebuffer));
        currentline := currentline - 1;
        until(currentline = 0);
        delete(filebuffer, pos(#13+#10, filebuffer), length(filebuffer));
        Result := filebuffer;
      end;
    end;

    //Returns number of lines in a file
    function GetFileLines(RelativePath : string) : integer;
    var
      filebuffer : string;
    begin
      filebuffer := ReadFile(RelativePath);
      repeat
      delete(filebuffer, 1, pos(#10, filebuffer));
      Result := Result + 1;
      until(pos(#13+#10, filebuffer) = 0);
      Result := Result + 1;
    end;

    It's been a while... but I'm BACK!!!

  14. #64
    Join Date
    Apr 2006
    Location
    I live in NH
    Posts
    611
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Thank you, but naw. It's so easy to just copy and paste. It would be a hassle to get it from a text file. You might as well make it in a text file and copy and paste it into the script.

    I have my own file functions though. I used a lot of them in my Stats Grabber. Check it out if you can!

  15. #65
    Join Date
    Feb 2007
    Posts
    215
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    my main got banned for some bullshit i was like "if u guess my passw3rd my st00f is teh yurz!" one time and some pm reported me for password scamming encrouageing others to break rules and account sharing/trading.

    I sent in appeal and was accepted instantly. I said that the mod was an idiot and should have their mod takin away and they just said ok.

    I dont think jagex really cares. there kinda like eeny meeny miny mo should i unban this noob fo sho? and pick yes or no. Hell i bet i could make a killing sellin em this script:
    SCAR Code:
    program unban teh n33bz

    begin
    repeat
    if random(10) = 0 then
    clickmouse(wherever no is);
    else
    clickmouse(yes);
    wait(1000);
    until(false);
    end.
    A common mistake people make when trying to design something completely foolproof is to underestimate the ingenuity of complete fools.
    -Douglas Adams

  16. #66
    Join Date
    Feb 2007
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i get same error as botmaster...what's wrong? I wanna ban myself

  17. #67
    Join Date
    Apr 2006
    Location
    I live in NH
    Posts
    611
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Fixed it! Sorry about that.

  18. #68
    Join Date
    Oct 2006
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I get this error, when i try to start this script

    [Runtime Error] : External exception 80000003 in line 68 in script C:\Program Files\SCAR 2.03\Scripts\BanYourselfFast.scar

  19. #69
    Join Date
    Mar 2007
    Location
    England
    Posts
    274
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    really funny script

  20. #70
    Join Date
    Mar 2007
    Posts
    81
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Rip off
    perm muted and broke rules 1-4 6 8 and 11 make it better please

  21. #71
    Join Date
    Feb 2007
    Posts
    424
    Mentioned
    0 Post(s)
    Quoted
    16 Post(s)

    Default

    ........
    Last edited by WinterDream; 05-19-2012 at 07:30 PM.

  22. #72
    Join Date
    Apr 2006
    Location
    I live in NH
    Posts
    611
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    OK. It's finally fixed! Thank you so much Bot Master, Elmo Man345, Gradeon, and Winter Dream.

    Sorry everyone for the inconvenience. I don't know what is the matter with me.

  23. #73
    Join Date
    Oct 2006
    Location
    New Zealand
    Posts
    423
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    not sure if youve got this but make it randomly click the mm every now and again to keep you logged in, use clickmouse ofcourse

  24. #74
    Join Date
    Dec 2006
    Location
    Third rock from the sun.
    Posts
    2,510
    Mentioned
    4 Post(s)
    Quoted
    1 Post(s)

    Default

    http://www.villavu.com/forum/showthread.php?t=7496

    I'm almost positive it'll get you the ban-hammer.

    Feel free to use it in your script, ron

  25. #75
    Join Date
    Dec 2006
    Posts
    2,244
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    muted for 2 days but no
    +black marks!!!+

Page 3 of 8 FirstFirst 12345 ... LastLast

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Fast Help
    By nhstarter10 in forum OSR Help
    Replies: 2
    Last Post: 12-11-2008, 12:08 AM
  2. need fast help :P
    By sjlou in forum OSR Help
    Replies: 9
    Last Post: 10-03-2007, 06:58 PM
  3. Need fast help!
    By faster789 in forum OSR Help
    Replies: 0
    Last Post: 10-02-2007, 02:37 AM

Posting Permissions

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