Results 1 to 15 of 15

Thread: Simple Dropper!!!!!

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

    Default Simple Dropper!!!!!

    OMFG so ive been searching the forums and ive found these

    ONLY THREAD THAT DOSENT HELP ME

    Umh as u might see im kinda mad and dont call me leecher cuz im just searching for a dropper that will drop my unstrung long bows and then stop so simply to say: a dropper that will drop everything expect first item and i want it to work and if u just give me something like

    SCAR Code:
    if (InvFull) then
      DropItem('log');

    PLZ DONT! i want a full script and again dont call me leecher...

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

    Default

    give me..it look like you commanding some1..
    why you just dont do
    SCAR Code:
    if (invfull) then
    begin
    dropto(2,28)
    end;

    or

    if (invfull) then
    finditem('log')// or somthing like that..

    if getuptext('log') then
    begin
    mmouse;
    mouse;
    end;

    or somthing like that this wont compile lol....
    ~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
    give me..it look like you commanding some1..
    why you just dont do
    SCAR Code:
    if (invfull) then
    begin
    dropto(2,28)
    end;

    or

    if (invfull) then
    finditem('log')// or somthing like that..

    if getuptext('log') then
    begin
    mmouse;
    mouse;
    end;

    or somthing like that this wont compile lol....
    im just searching for the simplest script that will be made and sorry if i sound like ''GIVE ME A DROPPER OR GO TO----'' but theres no droppers that works and if u could make a simple dropper for me id be greatful

  4. #4
    Join Date
    Apr 2007
    Location
    Michigan -.-
    Posts
    1,357
    Mentioned
    2 Post(s)
    Quoted
    4 Post(s)

    Default

    Seriously take 10 minutes out of your life and just read a tut on scripting...

    if you look in the 'includes' folder you will see dropping commands...it should take a begginner maybe 30 min to an hour to figure it out (probably less). This shows complete laziness...
    METAL HEAD FOR LIFE!!!

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

    Default

    Quote Originally Posted by gerauchert View Post
    Seriously take 10 minutes out of your life and just read a tut on scripting...

    if you look in the 'includes' folder you will see dropping commands...it should take a begginner maybe 30 min to an hour to figure it out (probably less). This shows complete laziness...
    First i posted this in Script Requests and
    This shows complete laziness...
    Why the hell woud i cheat?!

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

    Default

    Ill write one for you, stop the flaming, ill post it here when im done, but im not putting anti randoms in or anything...
    The truth finally came out...


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

    Default

    Quote Originally Posted by mat_de_b View Post
    Ill write one for you, stop the flaming, ill post it here when im done, but im not putting anti randoms in or anything...
    Lol i can do that and thx and the anti-randoms for a dropper..? but ill wait

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

    Default

    Sorry about it being late my internet broke

    This will either empty your inventory when its full or when you press ctrl depending on what you set it too... just run it in the background while your playing rs


    SCAR Code:
    {.Script Info:
    # ScriptName  = Mat's AutoDropper v1
    # Author      = mat_de_b
    # Description = Automatically Drops Stuff
    # Version     = 1.0
    # 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
      Writeln('Dropping');
      InvC := InvCount;
      DropToPosition(FirstDropItem, InvC);
      Writeln('Done Dropping');
    end;

    begin
      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...


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

    Default

    umh i get this

    [Runtime Error] : divide by Zero in line 80 in script C:\Program\SCAR 3.11\includes\SRL/SRL/Core/Mouse.scar

  10. #10
    Join Date
    Nov 2006
    Location
    NSW, Australia
    Posts
    3,487
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    That's an SRL problem...not script problem.
    [CENTER][img]http://signatures.mylivesignature.com/54486/113/4539C8FAAF3EAB109A3CC1811EF0941B.png[/img][/CENTER]
    [CENTER][BANANA]TSN ~ Vacation! ~ says :I Love Santy[/BANANA][/CENTER]

    [CENTER][BANANA]Raymond - Oh rilie? says :Your smart[/BANANA][/CENTER]

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

    Default

    No its the script i forget to setup SRL
    I'm an idiot

    here is the correct version

    SCAR Code:
    {.Script Info:
    # ScriptName  = Mat's AutoDropper v1
    # Author      = mat_de_b
    # Description = Automatically Drops Stuff
    # Version     = 1.1
    # 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
      Writeln('Dropping');
      InvC := InvCount;
      DropToPosition(FirstDropItem, InvC);
      Writeln('Done Dropping');
    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...


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

    Default

    lol i had that 2 before but i forgot to put setupsrl;
    in the main loop.


    ps. @mat your sig ownz
    ~Hermen

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

    Default

    The truth finally came out...


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

    Default There Lol...

    Lo here yanix, nothing really lol. Just press control whenever you want to drop

    SCAR Code:
    Program PieDropper;
    {.include SRL/SRL.scar}

    Procedure Drop;
    Begin
    If(IsFunctionKeyDown(1))Then
    Begin
    DropTo(2,28);
    End;
    End;


    Begin
    Repeat
    Drop;
    Until(false);
    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

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

    Default

    Thx all

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. Fish Auto Dropper (simple)
    By mynameisjoe in forum RS3 Outdated / Broken Scripts
    Replies: 5
    Last Post: 04-14-2008, 11:46 AM
  3. A simple dropper, needs some work =//
    By grimey in forum OSR Help
    Replies: 4
    Last Post: 06-20-2007, 04:28 PM
  4. Need Simple Lummy Cutter+Dropper
    By Destroy Macintosh in forum RS3 Outdated / Broken Scripts
    Replies: 3
    Last Post: 05-13-2007, 01:42 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
  •