Results 1 to 14 of 14

Thread: Xtra ArrowZ

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

    Default Xtra ArrowZ

    Sup.

    Decided to make this today just to see if I could.

    I can.

    It collects arrow after arrow from the combat instructor on Tutorial island.

    It's not good for much of anything, but it's kinda neat.

    Screenshots, anyone?



    Tad hard to see there... It's 4950, incase you were wondering.

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

    Default

    when you go off tutorial island, doesn't it reset all your items?

    Nice though...I guess I'll have to check out the code...

    PS: check out this awesome program
    Interested in C# and Electrical Engineering? This might interest you.

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

    Default

    It does reset your items, sadly enough

    I did read about a bug though... Lemme see if I can dig it up...

    *puts five minutes on the clock*

    http://www.tainted-ones.com/index.php?showtopic=1445

    Woot!

    I'm sure that took less than five minutes

    If you read down, you'll see the post about "making a SCAR script".

    That's what started my autoing career

    Edit:

    Here's the lowfi version. Loads much faster.

    http://www.tainted-ones.com/lofivers...php/t1445.html

    Edit2:

    Ah, FireFox. Had it for a while. Not sure which one is better (IE or Firefox). I'll ask my dad later.

    Edit3:

    Are you making a new account to test it with? I'll PM you the one I did that with. It's already there.

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

    Default

    Hmmm....That site's got some mixed reports...some people say it works perfect, others say it doesn't work at all...
    Interested in C# and Electrical Engineering? This might interest you.

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

    Default

    I highly doubt it works.

    I saw this ages ago.

    I'm sure Jagex has their own little spy tools on all of these sites

    HEY JAGEX!!!

    Say hi to Mod Hulme for me?

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

    Default

    =D we should make a 'Talk to Jagex' thread...
    That'd be so funny

    Quote Originally Posted by Jagex spy
    *Opens 'Spy Explorer'
    *Clicks on srl-forums link
    *browsing through the forums...
    *What the...? A thread just for me?
    *Dies*
    Interested in C# and Electrical Engineering? This might interest you.

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

    Default

    Heh, sounds fun!

    We should do that... Seriously.

    Edit: Oh, I was flipping through IDs on the SRL-Stats signature thing (link in your sig), and I saw Fakawi's. Did you know that he's gotten 558 ScapeRunes? Something like that.

    That had to be annoying, doing all of those randoms...

  8. #8
    Join Date
    Feb 2006
    Location
    Tracy/Davis, California
    Posts
    12,631
    Mentioned
    135 Post(s)
    Quoted
    418 Post(s)

    Default

    Rofuken had a contest for making this script.
    He payed 500k-1M to winner
    I was 2nd place =/.

    ROFL
    This scipt is waay to simple and has no failsaifes.
    For all we know it might get stuck in a loop forever!

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

    Default

    Aww. That stinks

  10. #10
    Join Date
    Jun 2006
    Posts
    3,861
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    Get firefox........................

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

    Default

    Quote Originally Posted by yohojo8 View Post
    This scipt is waay to simple and has no failsaifes.
    For all we know it might get stuck in a loop forever!
    Heh, It just did, while I was running it for a bit

    Got 1k arrows though...

    EDIT:
    Now checks if it's logged out

    SCAR Code:
    program New;
    {.include SRL/SRL.scar}

     procedure DropArrows;
      begin
       if(FindColorTolerance(x, y, 138555, 554, 204, 609, 250, 5))then
        begin
         MouseBox(575, 220, 590, 233, 2);
         ChooseOption(x, y, 'rop');
          Wait(500 + Random(200));
        end;
      end;
       
     procedure GetArrows;
      begin
       repeat
        if(FindMSColorTol(x, y, 4079173, 5))or
        FindMSColorTol(x, y, 265320, 5)then
          MMouse(x, y, 2, 2);
          until(IsUpText('ombat'));
           begin
            Mouse(x, y, 2, 2, False);
            ChooseOption(x, y, 'Talk-to');
             Wait(2000 + Random(500));
           end;
      end;

     procedure PickupArrows;
      begin
       repeat
        if(FindObj(x, y, 'arrow', 264273, 5))then
        MMouse(x, y, 2, 2);
          until(IsUpText('arrow'));
          Mouse(x, y, 2, 2, True);
      end;
     
      procedure main;
      begin
        DropArrows;
        GetArrows;
        PickupArrows;
      end;
     
    begin
    SetupSRL;
     repeat
       if(LoggedIn)then
         main;
       wait(500+random(500));
     until(IsFKeydown(12))
    end.
    Interested in C# and Electrical Engineering? This might interest you.

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

    Default

    I'll remake it later I guess.

    I didn't really try to make too make the script too complicated.

    Just a simple arrow getter.

    I was actually just surprised it worked like it did

  13. #13
    Join Date
    Feb 2007
    Posts
    142
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    so what happens if oh say
    1.you make your noob a member with all those lovely arrows 2.end the membership and wait for it to expire 3. (then maybe) he spawns in lumby with all those arrows on him like characters are suppose to do when membership runs out

    just an idea

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

    Default

    That was actually the idea on the site I posted. I doubt it works though.

    If you wanna try it out, go ahead, but I'm 99% sure you'll be wasting a good five bucks

Thread Information

Users Browsing this Thread

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

Posting Permissions

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