Results 1 to 5 of 5

Thread: auto dropper asked

  1. #1
    Join Date
    Oct 2006
    Posts
    2,297
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default auto dropper asked

    Hi i want to ask you guys if you want to make me an auto dropper like this:

    program New;
    {.include srl/srl.scar}
    begin
    SetUpSRL;
    MouseSpeed:=1
    DropTo(2,28)
    DropTo(2,28)
    end.

    but that it continous, that it repeats:
    when your inv is full, then he dropps, but iver and over again :d
    a non-ending script =d

    Thanks

    Stijn

  2. #2
    Join Date
    Oct 2006
    Posts
    33
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)
    What do you think of:
    SCAR Code:
    program AutoDropper;
    //AUTODROPPER

    //My first script, will drop EVERYTHING!!!

    //No antirandoms yet, and it will drop infintly
    //You have to do the loops yourself, not good enough at scar yet =)
    {.include SRL\SRL.scar}
    begin
    repeat
    if InvFull then DropAll
    until(getskilllevel('mining')=99); //do another skill if you want, I'm not good enough at endless loops yet.
    end
    Hope this is a little usefull, not tested yet =(

  3. #3
    Join Date
    Mar 2006
    Posts
    3,051
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Problems...

    1. You didn't add any waits = LAG

    2. He wanted to keep item #1 not drop all.

    Code:
    program New;
    {.include srl/srl.scar}
    begin
      SetUpSRL;
      MouseSpeed:=1;
      repeat
        Wait(1000);
        If (InvFull) then
        begin
          DropTo(2,28);
          DropTo(2,28);
        end;
      until (false);
    end.

  4. #4
    Join Date
    Oct 2006
    Posts
    33
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thank you, it was my first scar script EVER, so I don't have the sufficient knowledge about that.

  5. #5
    Join Date
    Oct 2006
    Posts
    2,297
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    thanks guys

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Auto Dropper Help
    By lilmike in forum OSR Help
    Replies: 3
    Last Post: 09-04-2007, 11:22 PM
  2. auto dropper
    By Flame Guard in forum RS3 Outdated / Broken Scripts
    Replies: 4
    Last Post: 06-13-2007, 02:18 PM
  3. Auto dropper help.
    By kooldude in forum OSR Help
    Replies: 12
    Last Post: 04-17-2007, 03:48 AM
  4. auto dropper need help
    By phonokin in forum OSR Help
    Replies: 3
    Last Post: 01-19-2007, 04:27 AM

Posting Permissions

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