Results 1 to 9 of 9

Thread: Dropper

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

    Default Dropper

    Im looking for a dropper that drops everything in inv but not the first item and it dosent need anything just dont get me banned

  2. #2
    Join Date
    Apr 2007
    Location
    The Netherlands
    Posts
    5,553
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    dropto(2,28);

    somthing like this

    please dont ask stupid things for this use search button
    ~Hermen

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

    Default

    Quote Originally Posted by hermpie View Post
    dropto(2,28);

    somthing like this

    please dont ask stupid things for this use search button
    full script PLZ

    umh WHAT SHALL I SEARCH?! DROPPER?!?!?! and i didnt see


    please dont ask stupid things for this use search button in ur text until i pressed quote... i cant see some other ppls posts aswell...

  4. #4
    Join Date
    Aug 2006
    Posts
    408
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Dude a dropper is super easy to make, do you want it to drop whenever you push ctrl or f2 or something? Ctrl is best since it wont change to your stat page. To drop whenever your inventory is full all you have to do is something like this:
    (written for SCAR 2.03 and SRL 3.6)
    SCAR Code:
    program New;
    {.include srl/srl.scar}
    const
       InvSpaceDrop = 1-28;
    begin
    SetupSRL;
      repeat
        if InvFull then
    DropItem(InvSpaceDrop);
    until(false)
    end.

  5. #5
    Join Date
    Feb 2006
    Location
    Amsterdam
    Posts
    13,692
    Mentioned
    146 Post(s)
    Quoted
    130 Post(s)

    Default

    SCAR Code:
    {*******************************************************************************
    procedure DropAll;
    By: Lorax
    Description: Drops all items
    *******************************************************************************}


    procedure DropAll;
    var
      i: Integer;
    begin
      for i := 1 to 28 do
        DropItem(i);
    end;



    The best way to contact me is by email, which you can find on my website: http://wizzup.org
    I also get email notifications of private messages, though.

    Simba (on Twitter | Group on Villavu | Website | Stable/Unstable releases
    Documentation | Source | Simba Bug Tracker on Github and Villavu )


    My (Blog | Website)

  6. #6
    Join Date
    Aug 2007
    Posts
    429
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    He doesn't want to drop the first item =]
    use this

    SCAR Code:
    {*******************************************************************************
    procedure DropExcept(I: Array of Integer);
    By: Spky
    Description: Drops all except item(s) specified by inventory number(s).
    *******************************************************************************}


    procedure DropExcept(I: array of Integer);
    var
      InvSpot, En: Integer;
    begin
      for InvSpot := 1 to 28 do
      begin
        if (not (InvSpot = I[En])) then
          DropItem(InvSpot) else
          En := En + 1;
      end;
    end;

  7. #7
    Join Date
    Mar 2007
    Location
    In your computer
    Posts
    244
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    Program AutoDropper
    {.include SRL/SRL.scar}

    begin
     Drop(2,28);
    end.
    Even If You Are On Your Way, You Will Get Run Over If You Just Sit There.
    -ILikePie1995.

    My Best Script I Yet Made, Go Check It Out, Its In The Fighting Section. Look For UndeadKiller!

    GET FREE CASH!!!READ ALL ABOUT IT!!!
    http://www.AdPaid.com/ptr/pages/join...d=ilikepie1995

    JOIN AdPaid.Com NOW!!!ITS OWNAGE!!!
    http://www.AdPaid.com/ptr/pages/conf...d=ilikepie1995

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

    Default

    Quote Originally Posted by Derek- View Post
    He doesn't want to drop the first item =]
    use this

    SCAR Code:
    {*******************************************************************************
    procedure DropExcept(I: Array of Integer);
    By: Spky
    Description: Drops all except item(s) specified by inventory number(s).
    *******************************************************************************}


    procedure DropExcept(I: array of Integer);
    var
      InvSpot, En: Integer;
    begin
      for InvSpot := 1 to 28 do
      begin
        if (not (InvSpot = I[En])) then
          DropItem(InvSpot) else
          En := En + 1;
      end;
    end;
    thank u ill use this

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

    Default

    none works...

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. my dropper
    By Dangerous Garden Tools in forum OSR Help
    Replies: 5
    Last Post: 01-01-2008, 04:55 PM
  2. Cutter + Dropper
    By Raskolnikov in forum First Scripts
    Replies: 10
    Last Post: 11-11-2007, 04:53 PM
  3. Auto dropper
    By e370 in forum OSR Help
    Replies: 1
    Last Post: 07-25-2007, 07:29 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
  •