Results 1 to 2 of 2

Thread: Auto dropper

  1. #1
    Join Date
    Feb 2007
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Auto dropper

    It seems as though, Runescape have changed something. If you could edit the script and fix it, it would be greatly appreciated.

    SCAR Code:
    {
    [-|    Drags FlyFishing Dropper     |-]
    [-|This was just for personal use I|-]
    [-|thought I would share with you|-]
    [-|guys :)                                   |-]
    [-|This is for whatever you need.  |-]
    [-|It will drop EVERYTHING from  |-]
    [-|a slot you set to slot 28!          |-]
    [-|----------------------------------|-]
     
     
    Program DragsFlyDropper;
    {.include SRL/srl.scar}

     
    Const
    FKey = 2;//Which FKey you want to use to start the dropping.
    DropAt = 2//How many inventory spaces to not drop at top
     
    Procedure DragsDrop;
    Begin
       GameTab(4);
        wait(350);
       DropToPosition(DropAt+1,28);
        wait(500);
    End;
     
    Begin
     Repeat
      If(IsFkeydown(Fkey))then
      DragsDrop;
      wait(500)
     Until(False)
    End.

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

    Default

    SCAR Code:
    {
    [-|    Drags FlyFishing Dropper     |-]
    [-|This was just for personal use I|-]
    [-|thought I would share with you|-]
    [-|guys :)                                   |-]
    [-|This is for whatever you need.  |-]
    [-|It will drop EVERYTHING from  |-]
    [-|a slot you set to slot 28!          |-]
    [-|----------------------------------|-]
    }


    Program DragsFlyDropper;
    {.include SRL/srl.scar}

    Const
    FKey = 1;//Which FKey you want to use to start the dropping.
    DropAt = 2;//How many inventory spaces to not drop at top.

    Procedure DragsDrop;
    Begin
       GameTab(4);
        wait(350);
       DropToPosition(DropAt+1,28);
        wait(500);
    End;

    Begin
     Repeat
      If(IsFkeydown(Fkey))then
      DragsDrop;
      wait(500)
     Until(False)
    End.

    Ive Just fixed your script, it didnt run because you missed a ; out.
    Hope ive helped

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Auto Dropper
    By Oranges_Exist in forum RS3 Outdated / Broken Scripts
    Replies: 4
    Last Post: 05-10-2008, 10:33 PM
  2. Auto Dropper Help
    By lilmike in forum OSR Help
    Replies: 3
    Last Post: 09-04-2007, 11:22 PM
  3. auto dropper
    By Flame Guard in forum RS3 Outdated / Broken Scripts
    Replies: 4
    Last Post: 06-13-2007, 02:18 PM
  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
  •