Results 1 to 6 of 6

Thread: Fish Auto Dropper (simple)

  1. #1
    Join Date
    Mar 2007
    Location
    Jersey
    Posts
    159
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default Fish Auto Dropper (simple)

    Hi, I was going to go partially legit for a high fishing level... Can someone make a script that simply drops items from, lets say, inv. spot 3-28 please. and it would be great if the mouse-speed and the inv. spots could be changeable also. I hope this isn't too annoying to make. Thanks.

    Chris

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

    Default

    SCAR Code:
    program PowerFisher;
    {.include srl/srl.scar}
    {.include srl/srl/skill/fishing.scar}


    var x, y, Tries: integer;

    procedure DropFish;       // Drop To doesnt work any more
    var i: integer;
    begin
    mousespeed := 12 + random(3)
    for i := 3 to 28 do
      DropItem(i);
    end;

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

    just turn it on when your inventory is full, then stop it, fish again and start it back up.

  3. #3
    Join Date
    May 2007
    Location
    in a pineapple under the sea
    Posts
    1,040
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by igotgrapes View Post
    SCAR Code:
    program PowerFisher;
    {.include srl/srl.scar}
    {.include srl/srl/skill/fishing.scar}


    var x, y, Tries: integer;

    procedure DropFish;       // Drop To doesnt work any more
    var i: integer;
    begin
    mousespeed := 12 + random(3)
    for i := 3 to 28 do
      DropItem(i);
    end;

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

    just turn it on when your inventory is full, then stop it, fish again and start it back up.
    too detectable try

    SCAR Code:
    procedure DropFish;       // Drop To doesnt work any more
    var i: integer;
    begin
      mousespeed := 12 + random(3)
      for i := 3 to 28 do
      begin
        DropItem(i);
        wait(random(250));
      end;
    end;
    [SIZE="4"][CENTER][URL="http://www.youtube.com/watch?v=5YsGJz3j4os"]LOL u mad bro?[/URL][/CENTER][/SIZE]

  4. #4
    Join Date
    Mar 2007
    Location
    Jersey
    Posts
    159
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

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

    Default

    Quote Originally Posted by Timothegreat View Post
    too detectable try

    SCAR Code:
    procedure DropFish;       // Drop To doesnt work any more
    var i: integer;
    begin
      mousespeed := 12 + random(3)
      for i := 3 to 28 do
      begin
        DropItem(i);
        wait(random(250));
      end;
    end;

    wtf!?!?!? how is it detectable??? i've been using this for the past 300k exp!!!!!!

  6. #6
    Join Date
    Mar 2007
    Location
    Jersey
    Posts
    159
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    You're right grapes, it doesn't seem detectable at all.. Thanks again.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. need a simple auto dropper
    By prowled in forum OSR Help
    Replies: 15
    Last Post: 03-26-2009, 09:13 AM
  2. xtarcs simple auto dropper
    By xtarc in forum First Scripts
    Replies: 1
    Last Post: 11-26-2007, 12:55 AM
  3. Simple Dropper!!!!!
    By yanix in forum RS3 Outdated / Broken Scripts
    Replies: 14
    Last Post: 08-31-2007, 05:57 PM
  4. A simple dropper, needs some work =//
    By grimey in forum OSR Help
    Replies: 4
    Last Post: 06-20-2007, 04:28 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
  •