Results 1 to 11 of 11

Thread: Auto-Drop Script

  1. #1
    Join Date
    Oct 2007
    Location
    Florida, USA
    Posts
    486
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Auto-Drop Script

    I know these are simple to make, but i am script-challenged lol.
    I need a working script with a decent anti-ban to drop 27 items .
    The more anti-ban/Randomized the better!
    What do Harry and God have in common?
    They are the same person!

  2. #2
    Join Date
    Oct 2007
    Location
    #srl
    Posts
    6,102
    Mentioned
    39 Post(s)
    Quoted
    62 Post(s)

    Default

    Code:
    begin
      if InvFull then
      begin
        DropAll;
        if not (InvFull) then
        repeat
          Wait(100);
        untill(InvFull);
      end;
    end;

  3. #3
    Join Date
    Oct 2007
    Location
    Florida, USA
    Posts
    486
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by NCDS View Post
    Code:
    begin
      if InvFull then
      begin
        DropAll;
        if not (InvFull) then
        repeat
          Wait(100);
        untill(InvFull);
      end;
    end;
    Thats Great, could you just add a bit more random and itd be perfect! And to drop spot 2-28
    What do Harry and God have in common?
    They are the same person!

  4. #4
    Join Date
    Oct 2006
    Location
    ithurtsithurtsithurtsithurts
    Posts
    2,930
    Mentioned
    7 Post(s)
    Quoted
    135 Post(s)

    Default

    SCAR Code:
    program whatever;
    {.include srl/srl.scar}
    var
    i: Integer;

    begin
      for i := 2 to 28 do
        DropItem(i);
    end.

  5. #5
    Join Date
    Oct 2007
    Location
    Florida, USA
    Posts
    486
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by senrath View Post
    SCAR Code:
    program whatever;
    {.include srl/srl.scar}
    var
    i: Integer;

    begin
      for i := 2 to 28 do
        DropItem(i);
    end.
    Didnt work .
    What do Harry and God have in common?
    They are the same person!

  6. #6
    Join Date
    Oct 2006
    Location
    ithurtsithurtsithurtsithurts
    Posts
    2,930
    Mentioned
    7 Post(s)
    Quoted
    135 Post(s)

    Default

    How didn't it work? There's not much for the code to mess up on...

  7. #7
    Join Date
    May 2007
    Posts
    468
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    If you wanted to make it better, make it so whenever you hit ctrl+d. it'll drop it.

    Safe-powermining FTW!
    Originally Posted by YoHoJo
    I like hentai.

  8. #8
    Join Date
    Oct 2007
    Location
    Florida, USA
    Posts
    486
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    It complies and executes, but then doesnt do anything.
    What do Harry and God have in common?
    They are the same person!

  9. #9
    Join Date
    Feb 2009
    Location
    Philipines
    Posts
    600
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by bgxsaer View Post
    It complies and executes, but then doesnt do anything.
    Did you even have anything in your inventory?

  10. #10
    Join Date
    Oct 2007
    Location
    Florida, USA
    Posts
    486
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ya invent is full. Now when it executes the mouse moves SUPER slow and pretty much does nothing.
    What do Harry and God have in common?
    They are the same person!

  11. #11
    Join Date
    Oct 2006
    Location
    ithurtsithurtsithurtsithurts
    Posts
    2,930
    Mentioned
    7 Post(s)
    Quoted
    135 Post(s)

    Default

    Whoops, forgot one line.

    SCAR Code:
    program whatever;
    {.include srl/srl.scar}
    var
    i: Integer;

    begin
      SetupSRL;
      for i := 2 to 28 do
        DropItem(i);
    end.

Thread Information

Users Browsing this Thread

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

Posting Permissions

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