Results 1 to 16 of 16

Thread: Auto Droppers

  1. #1
    Join Date
    Apr 2013
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    15 Post(s)

    Default Auto Droppers

    How would I know if a download from a youtube video is legit or not? I really want an auto dropper because mining just kills my hands.

    Am I allowed to post the video in question?

  2. #2
    Join Date
    Feb 2012
    Location
    Discord
    Posts
    3,114
    Mentioned
    37 Post(s)
    Quoted
    538 Post(s)

    Default

    LOL, Don't do it kid(dling stuff from youtube is 99% a bad idea). If its for eoc use the action bar, for 07 you can bot or use mousekeys.

  3. #3
    Join Date
    Apr 2013
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    15 Post(s)

    Default

    Quote Originally Posted by The Killer View Post
    LOL, Don't do it kid(dling stuff from youtube is 99% a bad idea). If its for eoc use the action bar, for 07 you can bot or use mousekeys.
    I know man, I just cant stand mining. It's the Dario Gonzalez auto dropper thingy. Yes, it's for 07 and I can't find a good bot that is fast.
    Last edited by Bam; 08-10-2013 at 10:33 PM.

  4. #4
    Join Date
    Feb 2012
    Location
    Discord
    Posts
    3,114
    Mentioned
    37 Post(s)
    Quoted
    538 Post(s)

    Default

    26 views. Don't do it!

  5. #5
    Join Date
    Apr 2013
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    15 Post(s)

    Default

    Quote Originally Posted by The Killer View Post
    26 views. Don't do it!
    ok thanks for talking me off the ledge

    Are there any decent simba/scar/ free droppers for 07?
    Last edited by Bam; 08-10-2013 at 10:48 PM.

  6. #6
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    LOL the guy is using a script is tri-bot lmao, anyway download is fake

  7. #7
    Join Date
    Apr 2013
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    15 Post(s)

    Default

    Quote Originally Posted by Officer Barbrady View Post
    LOL the guy is using a script is tri-bot lmao, anyway download is fake
    really?

  8. #8
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    Quote Originally Posted by Bam View Post
    really?
    Yea I can tel because that is the default mouse drawing for tri-bot.

    Here is a script to drop everything in your inventory for simba:

    Simba Code:
    {$i SRL-OSR/SRL.simba}
    begin
      DropAll;
    end.

    Make sure you have OSR installed: https://github.com/SRL/SRL-OSR

  9. #9
    Join Date
    Feb 2012
    Location
    Discord
    Posts
    3,114
    Mentioned
    37 Post(s)
    Quoted
    538 Post(s)

    Default

    Quote Originally Posted by Bam View Post
    ok thanks for talking me off the ledge

    Are there any decent simba/scar/ free droppers for 07?

    This seems to be the original makers video, this seems safe 4k views no bad comments.

    http://www.youtube.com/watch?v=J1Nj2MqZpHA
    again just use simba, you can just do:
    Simba Code:
    program dropper;
    {$DEFINE SMART8}
    {$I SRL-osr/SRL.simba}  

    begin
      setupsrl;
      repeat
        DropAll;
      until(false);
    end.
    or DropAllExcept(Array of int not to drop)
    eg.
    Simba Code:
    program dropper;
    {$DEFINE SMART8}
    {$I SRL-osr/SRL.simba}  

    begin
      setupsrl;
      repeat
        DropAllExcept([1, 2]);
      until(false);
    end.
    just enable smart when you want it to drop :P

  10. #10
    Join Date
    Apr 2013
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    15 Post(s)

    Default

    Awesome thanks, I will try those scripts out thanks again all of you.


    Thanks for being so helpful, I like this website since everyone is helpful and not rude if you ask questions! It works great, is there a way to change it to make the speed of it faster?
    Last edited by Bam; 08-10-2013 at 11:01 PM.

  11. #11
    Join Date
    Feb 2012
    Location
    Discord
    Posts
    3,114
    Mentioned
    37 Post(s)
    Quoted
    538 Post(s)

    Default

    Quote Originally Posted by Bam View Post
    Awesome thanks, I will try those scripts out thanks again all of you.


    Thanks for being so helpful, I like this website since everyone is helpful and not rude if you ask questions! It works great, is there a way to change it to make the speed of it faster?
    MouseSpeed := 40;

    And thats why I became active here, I liked it so much I wanted to stay :P

  12. #12
    Join Date
    Oct 2006
    Location
    Netherlands
    Posts
    3,285
    Mentioned
    105 Post(s)
    Quoted
    494 Post(s)

    Default

    Quote Originally Posted by Bam View Post
    Awesome thanks, I will try those scripts out thanks again all of you.


    Thanks for being so helpful, I like this website since everyone is helpful and not rude if you ask questions! It works great, is there a way to change it to make the speed of it faster?
    Simba Code:
    program dropper;
    {$DEFINE SMART8}
    {$I SRL-osr/SRL.simba}  

    begin
      setupsrl;
      MouseSpeed := 15; //replace 15 with whatever you want.
      repeat
        DropAll;
      until(false);
    end.
    Working on: Tithe Farmer

  13. #13
    Join Date
    Nov 2011
    Posts
    130
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default

    Invalid Gold
    "I love Women, I have all there albums. -Hank Moody"

  14. #14
    Join Date
    Feb 2012
    Location
    Discord
    Posts
    3,114
    Mentioned
    37 Post(s)
    Quoted
    538 Post(s)

    Default

    Quote Originally Posted by Invalid Gold View Post
    1) requires dtm
    2) p07 include
    therefore you are better off with what masterbb has posted:/

  15. #15
    Join Date
    Apr 2013
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    15 Post(s)

    Default

    Quote Originally Posted by masterBB View Post
    Simba Code:
    program dropper;
    {$DEFINE SMART8}
    {$I SRL-osr/SRL.simba}  

    begin
      setupsrl;
      MouseSpeed := 15; //replace 15 with whatever you want.
      repeat
        DropAll;
      until(false);
    end.

    Is there a min/max speed with mouse speed? I assume 1 is slowest correct and 40 is fastest?

  16. #16
    Join Date
    Feb 2012
    Location
    Discord
    Posts
    3,114
    Mentioned
    37 Post(s)
    Quoted
    538 Post(s)

    Default

    Quote Originally Posted by Bam View Post
    Is there a min/max speed with mouse speed? I assume 1 is slowest correct and 40 is fastest?
    nah its not really limited with max, but you have to consider what is human like, doing 1000 is going to get you banned :') (i'd recommend up to 20 but 40 is fine and I'v even seen 80 being used). default speed is 15.

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
  •