Results 1 to 15 of 15

Thread: worst autominer ever...

  1. #1
    Join Date
    Mar 2007
    Posts
    107
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default worst autominer ever...

    SCAR Code:
    program autominer;
    var
    w,x,y,z:Integer;
    begin
    w:=12345; //fill in ore color
    z:=12345; //fill in time to wait (in milliseconds) before clicking new ore
    repeat;
    FindColor(x,y,z,0,0,800,600);
    ClickMouse(x,y,true);
    Wait(w);
    until(false);
    end.

    if you can make a worse autominer than that, post it...

    Directions:
    1. go to mining place
    2. fill setup in at lines 5,6
    3. press run

    tips:
    1. erm...i don't recommend using this script
    2. Post Proggies!!!

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

    Default

    You mixed up your 'w' and 'z'.

    So this won't even work, making it the worst script of all time.

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

    Default

    lmao @ exps, was just about to say you mixed the two varibles up.

    And we can't post proggies due to the lack of a progress report xD

    I guess if this is your first script, welcome to scar and congrats on your first working script (well, nearly working)

  4. #4
    Join Date
    Mar 2007
    Posts
    107
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    yes, i made this after reading 2 tuts but im sure i can do better eventually.

  5. #5
    Join Date
    Feb 2007
    Posts
    3,616
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by sherlockmeister View Post
    yes, i made this after reading 2 tuts but im sure i can do better eventually.
    Very good try. And you can do better if you practice, I'm sure of that.

    You should read my tut on making scripts undetectable using SRL commands (links in sig) Things the beginner tuts don't teach you. Read the first chapter in that, and then check out my other tut (links in sig) Learning the things to become a SRL member.

  6. #6
    Join Date
    Mar 2007
    Location
    Under a rock
    Posts
    813
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Stand to the right of a rock at the highest angle and the compass facing north, it will do the rest

    SCAR Code:
    program autominer;
    var
    x,y,:Integer;
    begin
    repeat;
    clickmouse(227, 174,true);
    wait(3000);
    until(false);
    end.

    And this for the rock to the left of you lol:

    SCAR Code:
    program autominer;
    var
    x,y,:Integer;
    begin
    repeat;
    clickmouse(307, 183,true);
    wait(3000);
    until(false);
    end.

  7. #7
    Join Date
    Oct 2006
    Posts
    371
    Mentioned
    0 Post(s)
    Quoted
    5 Post(s)

    Default

    Yah right guys, this is the worst autominer, you can ever get!


    SCAR Code:
    Program I_r_teh_best_script0r_eva;
    Begin
    Repeat
    ClickMouse(453, 399, True);
    Wait(1500)
    Until(False);
    End.


  8. #8
    Join Date
    Oct 2006
    Posts
    2
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Sebo View Post
    Yah right guys, this is the worst autominer, you can ever get!


    SCAR Code:
    Program I_r_teh_best_script0r_eva;
    Begin
    Repeat
    ClickMouse(453, 399, True);
    Wait(1500)
    Until(False);
    End.

    More like autoclicker

  9. #9
    Join Date
    Jun 2006
    Location
    The Netherlands
    Posts
    2,984
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    program l33tz0rz;
    begin
    MineDaRockUntilIAmAtLevel99ThenGoMakeANewAccountAn dDoItAllOverAgain;
    end;
    Administrator's Warning:


  10. #10
    Join Date
    Feb 2007
    Location
    Het ademt zwaar en moedeloos vannacht.
    Posts
    7,211
    Mentioned
    26 Post(s)
    Quoted
    72 Post(s)

    Default

    Better autominer:
    SCAR Code:
    program MinePl0x;
    begin
    while true do
      ClickMouse(270, 140, true);
    end.
    No waits, only four lines!
    Be sure to stand next of the rock.
    I made a new script, check it out!.

  11. #11
    Join Date
    Feb 2007
    Posts
    3,616
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    program AutoMiner;
    {.include SRL/SRL.scar}
    procedure MineRock;
    begin
      repeat
        MoveMouse(1 + random(500), 1 + random(500));
      until(IsUpText('ine'));
      GetMousePos(x,y);
      ClickMouse(x,y,true);
      SendKeys('Im autoing!!!! Report me!');
    end;

    begin
      repeat
        SetupSRL;
        MineRock;
      until(False);
    end.

    Although mine does have a little more code, it is still much more detectable

  12. #12
    Join Date
    Feb 2007
    Location
    Het ademt zwaar en moedeloos vannacht.
    Posts
    7,211
    Mentioned
    26 Post(s)
    Quoted
    72 Post(s)

    Default

    But Jad, yours works! It will at least click A ROCK!!!!!!!
    And it isn't as detectable as mine, it doesn't even press the enter key.
    I made a new script, check it out!.

  13. #13
    Join Date
    Apr 2008
    Location
    Northwest england
    Posts
    1,179
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    sumilion ur script is the best here u never gunna win this comp

    do u mind if i use it

    well heres mine

    program new
    begin
    click(iron,rswindow,wait)
    repeat
    sendkeys('jagex are g @y');
    sendkeys('im a bot');
    sendkeys('im a srl leecher');//thats the best worst part urgh leechers
    until(false);
    end.

    shud mine 1 rock then spam rofl
    end;

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

    Default

    Quote Originally Posted by waddo View Post
    sumilion ur script is the best here u never gunna win this comp

    do u mind if i use it

    well heres mine

    program new
    begin
    click(iron,rswindow,wait)
    repeat
    sendkeys('jagex are g @y');
    sendkeys('im a bot');
    sendkeys('im a srl leecher');//thats the best worst part urgh leechers
    until(false);
    end.

    shud mine 1 rock then spam rofl
    end;
    06-13-2007, 11:43 AM Eh, please do not gravedig.


    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 2006
    Posts
    13,241
    Mentioned
    228 Post(s)
    Quoted
    267 Post(s)

    Default

    Quote Originally Posted by Hy71194 View Post
    06-13-2007, 11:43 AM
    Closed
    STOP PM'ING ME

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Worst video ever
    By Griff in forum Misc. Links and Programs
    Replies: 5
    Last Post: 12-26-2008, 07:04 AM
  2. Worst Pickup Lines! :)
    By Putnam in forum The Bashing Club / BBQ Pit
    Replies: 62
    Last Post: 07-31-2008, 08:32 AM
  3. Worst night ever
    By alberttai in forum News and General
    Replies: 23
    Last Post: 05-28-2008, 08:15 PM
  4. AutoMiner
    By HarryJames in forum RS3 Outdated / Broken Scripts
    Replies: 9
    Last Post: 03-03-2007, 02:39 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
  •