Results 1 to 4 of 4

Thread: [SRL 4] Mat's AutoDropper

  1. #1
    Join Date
    Aug 2007
    Location
    England
    Posts
    734
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default [SRL 4] Mat's AutoDropper v1.5 UPDATED

    Someone requested this in the request forum, so i thought id post it... feel free to comment on it... Just read the setup and run

    SCAR Code:
    {.Script Info:
    # ScriptName  = Mat's AutoDropper v1
    # Author      = mat_de_b
    # Description = Automatically Drops Stuff
    # Version     = 1.5
    # Date        = 30/08/07 16:53 GMT
    # Comments    =
    /Script Info}

    program New;
    {.include srl/srl.scar}
    Const
    FirstDropItem = 1; // The inventory slot of the first droppable item
                       // (put your stuff you wish to keep before it)
    Mode = False;      // True = Drops when full
                       // False = Drops on the press of Ctrl

    procedure Drop;
    var InvC:integer;
    begin
      repeat
        ArrangeInv;
        Writeln('Dropping');
        InvC := InvCount;
        DropToPosition(FirstDropItem, InvC);
        Writeln('Done Dropping');
      until(InvCount <= FirstDropItem);
    end;

    begin
      SetupSRL;
      Writeln('-------------------------------');
      Writeln('-------------------------------');
      Writeln('----------Made by--------------');
      Writeln('----------mat_de_b-------------');
      Writeln('-------------------------------');
      Writeln('-------------------------------');
      wait(2000);
        repeat
          if(mode = true)then
          begin
            Status('Waiting');
              if(InvFull)then
              begin
                Drop;
              end;
          end;

          if(mode = false)then
          begin
            Status('Waiting for you to press Control');
              if(IsFunctionKeyDown(1))then
              begin
                Drop;
                wait(2000+random(500));
              end;
          end;
        until(False);
    end.
    The truth finally came out...


  2. #2
    Join Date
    Jun 2007
    Location
    Mianus
    Posts
    863
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Yey it was me xD

    Edit: umh it only drops the last ones in the inv...

  3. #3
    Join Date
    Aug 2007
    Location
    England
    Posts
    734
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    It shouldnt do... mite be a problem with Srl...
    The truth finally came out...


  4. #4
    Join Date
    Oct 2006
    Location
    Texas,united states
    Posts
    100
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ine 106: [Error] (202:1): Unknown identifier 'MouseSpeed' in script C:\Program Files\SCAR 3.11\includes\srl\srl\core\Setup.scar
    I dont know what thats all about i got the new SRL

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. AutoDropper
    By jiggypwner in forum OSR Help
    Replies: 13
    Last Post: 03-15-2008, 04:41 AM
  2. [SRL 4] Mat's Chaos Boner
    By mat_de_b in forum RS3 Outdated / Broken Scripts
    Replies: 25
    Last Post: 11-30-2007, 09:23 PM
  3. Autodropper help!!
    By Albo23 in forum OSR Help
    Replies: 4
    Last Post: 10-28-2007, 01:49 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
  •