Results 1 to 12 of 12

Thread: The Bumper (For RS Forums)

  1. #1
    Join Date
    Dec 2007
    Posts
    97
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default The Bumper (For RS Forums)

    Ello there,

    Welcome to probably the weirdest, newest, and most simple (But Creative) script you might have seen in a long time (I hope)

    I decided a little while ago to finally learn how to script, but I didn't want to make something we have all seen a thousand times (Such as an auto typer riped straight out of a tutorial).

    Well here is something that I hope is original.

    This script will bump your thread every ten minutes.

    I know its not that useful, but with a simple edit to one number it could keep your thread on the front page for two days straight!

    I don't think JaGex checks the forums for macros anyways...

    Well thank you for looking at my thread now test my script and tell me that it works! (You have to be patient, let it start, then wait ten minutes and it Should bump again.

    EDIT:

    Apparently I am not patient enough, sorry... So the thread got accidentally double posted! The first time I tried to post the thread the connection to srl servers would not come through and it just sat there. So I got out and re-made it.... Now both are showing.

    Sorry, not a good way for a noob to start....

    Well anyways...

    Here it is:

    SCAR Code:
    {
                                      HurgyMcGurgyGurg
                                 Presents His First Script:


    [][][][][]  []    []  [][][][]     [][][][]  []    []  [][]  [][]  [][][][]
        []      []    []  []           []    []  []    []  [] [][] []  []    []
        []      [][][][]  [][][][]     [][][][]  []    []  []  []  []  [][][][]
        []      []    []  []           []    []  []    []  []      []  []
        []      []    []  [][][][]     [][][][]  [][][][]  []      []  []

    1. Just Make sure you have your thread specified on the Runescape Forums as the
    Rs Window and the bump part of thread is clearly visible.
    2. Hit play and it will use the bump button to bump your thread every 10 minutes
    it is set to bump for 3 times, you can simply go down to the
    until i>= 3 line and change that to how many times you want it to bump your thread.
    3. Just test it and make sure it can bump more that once, then just let me know
    it works.

    THANK YOU FOR TESTING THIS SCRIPT!

    Disclaimer: As this is my first script, I am not responsible for any errors,
    however it is so simple I doubt there could be any...
    I also doubt you could get banned from this, since there are no macro detection
    programs JaGex runs on the forums.... At least I hope o.0

    }

    program thebump;


    var
      i: Integer;
      BumpBMP: Integer;
      x,y: Integer;
     
    procedure LoadBump;
    begin
      BumpBMP := BitmapFromString(27, 12, 'beNpjYKAFmHDAAQ1RbiBBkUFr' +
           'ILIUmiBy4KAFFJ4wxGUgLjYlLiRSwcgxEE/CxhQnaCA1AQCv3nIR');
    end;

    procedure ClickBump;
    begin
    if(FindBitmap(BumpBMP,x,y)) then
      begin
      MoveMouseSmoothEx(x,y+random(0),20,40,45,25,20);
      Wait(100+random(100));
      ClickMouse(x,y,true);
      end;
    end;

    procedure FreeBump;
    begin
      FreeBitmap(BumpBMP);
    end;

    begin
      LoadBump;
     i:= 0;
      repeat
      i:= i + 1;
        ClickBump;
        wait(601000+random(100));
      until(i >= 3);
      FreeBump;
    end.

  2. #2
    Join Date
    Nov 2007
    Posts
    48
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Nice, original... but
    use srl functions :-)
    MoveMouseSmoothEx is kinda... outdated? :/
    use Mouse(x,y,2,2,true)

    and include the srl files

  3. #3
    Join Date
    May 2007
    Location
    Ohio
    Posts
    2,296
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    An Odd First Script

    Here.

    Keep Up The Work!

    Try using human like things, experement, Good Luck!

    SCAR Code:
    {
                                      HurgyMcGurgyGurg
                                 Presents His First Script:
     
     
    [][][][][]  []    []  [][][][]     [][][][]  []    []  [][]  [][]  [][][][]
        []      []    []  []           []    []  []    []  [] [][] []  []    []
        []      [][][][]  [][][][]     [][][][]  []    []  []  []  []  [][][][]
        []      []    []  []           []    []  []    []  []      []  []
        []      []    []  [][][][]     [][][][]  [][][][]  []      []  []
     
    1. Just Make sure you have your thread specified on the Runescape Forums as the
    Rs Window and the bump part of thread is clearly visible.
    2. Just test it and make sure it can bump more that once, then just let me know
    it works.
     
    THANK YOU FOR TESTING THIS SCRIPT!
     
    Disclaimer: As this is my first script, I am not responsible for any errors,
    however it is so simple I doubt there could be any...
    I also doubt you could get banned from this, since there are no macro detection
    programs JaGex runs on the forums.... At least I hope o.0
     
    }

    program thebump;
     
    {.include SRL\SRL.scar}
     
    var
      BumpBMP: Integer;
      x, y: Integer;
     
    procedure LoadBump;
    begin
      BumpBMP := BitmapFromString(27, 12, 'beNpjYKAFmHDAAQ1RbiBBkUFr' +
           'ILIUmiBy4KAFFJ4wxGUgLjYlLiRSwcgxEE/CxhQnaCA1AQCv3nIR');
    end;
     
    procedure ClickBump;
    begin
      if FindBitmap(BumpBMP, x, y) then
        Mouse(x, y, 5, 5, True);
    end;
     
    procedure ScriptTerminate;
    begin
      FreeBitmap(BumpBMP);
    end;
     
    begin
      SetupSRL;
      LoadBump;
      repeat
        ClickBump;
        wait(601000 + Random(100));
      until(False);
    end.

  4. #4
    Join Date
    Dec 2006
    Location
    Copy pastin to my C#
    Posts
    3,788
    Mentioned
    8 Post(s)
    Quoted
    29 Post(s)

    Default

    Don't worry about the dupe threads, it happens, but if it's by yourself, you can delete a thread by deleting the first post, by going to Edit -> Delete

    If someone else has happened to made two or more threads the same, report the first post of the thread by clicking the red X in right of the post


    Nice to see a FreeBitmap in a first script, keep learning

  5. #5
    Join Date
    Dec 2006
    Location
    Program TEXAS home of AUTOERS
    Posts
    7,934
    Mentioned
    26 Post(s)
    Quoted
    237 Post(s)

    Default

    eh not bad try to make a rs script

  6. #6
    Join Date
    Dec 2007
    Posts
    97
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thank you for the feed back!

    I know its pretty simple. Thanks for the more human like stuff Timer. I need to start looking at rs now, I just thought that for my first one I would keep you SRL, now I will try it.

    Also thank you on how to delete the thread n3ss3s!

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

    Default

    @ Timer: You don't need Human-like procedures for web-based scripts...

    Looks good dude, keep it up


    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!

  8. #8
    Join Date
    Dec 2007
    Posts
    289
    Mentioned
    4 Post(s)
    Quoted
    86 Post(s)

    Default

    I new to this scripting thing and I've never seen a script for the RS Forums!!

    That's pretty cool! I see something new everyday :P

  9. #9
    Join Date
    Feb 2007
    Location
    South East England
    Posts
    2,906
    Mentioned
    2 Post(s)
    Quoted
    8 Post(s)

    Default

    Very wierd first script, Ive never actually seen one for the forums, but you got the basic concepts of scripting by using BMP's
    Jus' Lurkin'

  10. #10
    Join Date
    Feb 2007
    Location
    Estonia.
    Posts
    1,938
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Hmm..where is the Bump Button?
    Eerik.

  11. #11
    Join Date
    May 2007
    Posts
    11
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Nice work. I wouldn't be able to do that

  12. #12
    Join Date
    Feb 2007
    Location
    Access Violation at 0x00000000
    Posts
    2,865
    Mentioned
    3 Post(s)
    Quoted
    18 Post(s)

    Default

    Or u'd do SleepAndMoveMouse(61000+random(1000));
    Instead of wait.
    No difference, but w/e :P

    Or w/e i always forget if its MoveMouseAndSleep or SleepAndMoveMouse ^^
    Ce ne sont que des gueux


Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Replies: 55
    Last Post: 09-01-2009, 10:13 PM
  2. Hello SRL Forums
    By ldg1414 in forum Who Are You ? Who ? Who ?
    Replies: 1
    Last Post: 05-02-2008, 01:08 AM
  3. Rs Forum Bumper
    By nhstarter10 in forum OSR Help
    Replies: 3
    Last Post: 04-12-2008, 10:33 AM
  4. The Bumper (For RS Forums)
    By Hurgymcgurgygurg in forum First Scripts
    Replies: 0
    Last Post: 02-26-2008, 05:09 AM
  5. new Forums!!!...?
    By LazyBoy in forum News and General
    Replies: 5
    Last Post: 11-07-2006, 04:32 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
  •