[Goldfarming] [Witch Doctor] [AutoIT] ACT 1 Cellar Farming Bot menu

User Tag List

Page 121 of 123 FirstFirst ... 2171117118119120121122123 LastLast
Results 1,801 to 1,815 of 1843
  1. #1801
    liquidsystem's Avatar Knight
    Reputation
    22
    Join Date
    Jun 2012
    Posts
    193
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This has been dead since Andy left, he didn't warn me that he'd be leaving... I only know how to port, so he really destroyed this bot, I hope he'll come back one day.
    I help support ANY Diablo 3 Witch Doctor Bot. (Andy/Avatar/zEEneXx/etc.)|If you have any issues with it, PM me.
    If you'd like to support me consider making a small donation.

    Current version for Andy's bot can always be found: here

    [Goldfarming] [Witch Doctor] [AutoIT] ACT 1 Cellar Farming Bot
  2. #1802
    MonkeyDoodle's Avatar Private
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    modifications

    Nevermind, I figured it out.
    Last edited by MonkeyDoodle; 08-07-2012 at 08:02 PM.

  3. #1803
    nille83's Avatar Corporal
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    20
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Are u going to fix the "Game limit" ? So the bot go to sleep some minutes and then start botting again.

  4. #1804
    dein42's Avatar Private
    Reputation
    1
    Join Date
    Nov 2011
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Anyone know how to add some longer sleep timers to v0.7? I've tried, but I'm terrible with AutoIt.

  5. #1805
    somerandom's Avatar Private
    Reputation
    3
    Join Date
    Aug 2012
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by dein42 View Post
    Anyone know how to add some longer sleep timers to v0.7? I've tried, but I'm terrible with AutoIt.
    Ok i was bored and read up on some times but instead i put a loop counter in.
    As i tested with bigger sleep timers it wasnt really affecting anything as it was how many runs in that hour you do i think.
    So i put a limiter of 90 runs per hour with a XX amount of minutes break after those runs are completed before the bot starts its runs again.
    Wether or not people want thos i can pass it on, but it is version 0.6

  6. #1806
    dein42's Avatar Private
    Reputation
    1
    Join Date
    Nov 2011
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by somerandom View Post
    Ok i was bored and read up on some times but instead i put a loop counter in.
    As i tested with bigger sleep timers it wasnt really affecting anything as it was how many runs in that hour you do i think.
    So i put a limiter of 90 runs per hour with a XX amount of minutes break after those runs are completed before the bot starts its runs again.
    Wether or not people want thos i can pass it on, but it is version 0.6
    I think at this point a lot of people are lost with the limits enabled and it'd be pretty helpful.

  7. #1807
    somerandom's Avatar Private
    Reputation
    3
    Join Date
    Aug 2012
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by dein42 View Post
    I think at this point a lot of people are lost with the limits enabled and it'd be pretty helpful.
    Here it is. This is V0.6 as i never went to v0.7.
    I Added some text in where the bot is so you can play around with how many runs per hour you will let it run and the cool downtime of how much it waits after the run

    I am still testing it out atm to find the best runs etc.

    Script:
    [AutoIt] doctorbot - Pastebin.com


    This is the code that was added to help understand how to change.

    Global $run = 0 <--Varible that stores the runs

    While 1
    $run = $run + 1
    ConsoleWrite($run)
    If $run < 105 Then <--- Change the number 105 to how ever many runs you want or think you can do per hour,(NOTE: This muct be set 1 more higher then the Else If Statement)
    ExitLoop

    ElseIf $run >= 104 Then <----When it reaches 104 it will stop the bot and wait for the alocated time.
    Sleep(904000) <--Pretty much this is 15minutes wait time(Every 1000 is 1 second)
    $run = 0
    ConsoleWrite($run)
    EndIf
    WEnd

    Hope this helps.
    Last edited by somerandom; 08-17-2012 at 09:20 PM.

  8. #1808
    prettypinkcloud's Avatar Member
    Reputation
    2
    Join Date
    Jul 2012
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    somerandom, would you show where to add that code into the 800x600 script? I can't seem to get it to work

  9. #1809
    somerandom's Avatar Private
    Reputation
    3
    Join Date
    Aug 2012
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by prettypinkcloud View Post
    somerandom, would you show where to add that code into the 800x600 script? I can't seem to get it to work
    This is v0.4 with the added code in it.
    The amount of runs can be bumped up a bit by an extra 10 per hour or so depending on the average run time

    The time i put was 40 seconds for a complete run and 20 seconds for a no cellar run so feel free to do the calculations etc for the amount of runs lol

    Script:
    [AutoIt] Doctor v0.4 - Pastebin.com
    Last edited by somerandom; 08-18-2012 at 04:38 AM.

  10. #1810
    prettypinkcloud's Avatar Member
    Reputation
    2
    Join Date
    Jul 2012
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    great, thanks a lot. Testing it out

  11. #1811
    tfooj666stary's Avatar Member
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    61
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    make sure to post if it's allright

  12. #1812
    piglet123's Avatar Private
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi all. After some farming (lvl 60 witch doctor, only hero i use), I decided to try botting, because I don't want to spend hundreds of hours on farming while so many people use bots. So, I never did it before. Terms like "script", etc etc are all unknown to me. Is it hard, and could I do it without any knowledge of programming? Let's say I want to farm where this dark cellar is. What do I need to do? I downloaded "autoit" and installed it. What then? I'm sorry for being such noob, but what can I do, my occupation is some other science. So, what after I downloaded it?

  13. #1813
    somerandom's Avatar Private
    Reputation
    3
    Join Date
    Aug 2012
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I will have to make some more changes to it as it hits a imput limit after so long about 2-4 hours
    I am trying to make it run for 1 hour have a 15minute break run 30mins 15minute break then 1 hour etc to get back in sync i hope
    Last edited by somerandom; 08-18-2012 at 07:58 PM.

  14. #1814
    piglet123's Avatar Private
    Reputation
    1
    Join Date
    Aug 2012
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ok, I think I did almost everything, but it's not working... I dont understand 2-3 things like:

    1. I have windows 7 Ultimate 64 bit. Under AutoIt v3 I have several apps: Compile scripts to 64 and x86, and run scripts 64 and x86. Shall I compile my notepad code into 64 or x86 and run script on the same?
    2. When I enter the game, is it neccesarily to do all that with checkpoint just to check if bot is working or can I just run in from the menu, and see that mouse is starting moving, what would prove bot is working?
    3. Is the correct sequence: start game, get checkpoint, leave game, logout, from the main menu tab and click START, run scripts, and press "pause" (in the tp left corner it says that its pause and I need to click pause) and it will start working?

  15. #1815
    somerandom's Avatar Private
    Reputation
    3
    Join Date
    Aug 2012
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by piglet123 View Post
    Ok, I think I did almost everything, but it's not working... I dont understand 2-3 things like:

    1. I have windows 7 Ultimate 64 bit. Under AutoIt v3 I have several apps: Compile scripts to 64 and x86, and run scripts 64 and x86. Shall I compile my notepad code into 64 or x86 and run script on the same?
    2. When I enter the game, is it neccesarily to do all that with checkpoint just to check if bot is working or can I just run in from the menu, and see that mouse is starting moving, what would prove bot is working?
    3. Is the correct sequence: start game, get checkpoint, leave game, logout, from the main menu tab and click START, run scripts, and press "pause" (in the tp left corner it says that its pause and I need to click pause) and it will start working?
    Once you have downloaded the text file from pastebin. open it and copy all that text then start up auroit script editor and paste it in there.
    Now depending on the reolustion you are running it as you have to change the file location from where the pictures are kept. (from the other downloaded files you should have)
    Now once the script is ready save it and you can either complie it to a x64 bit exe or just right click it and run. Select the options you want and click start but make sure you are in game first.
    Now as for the set up just start the game get to check point then log out to player menu then press F2 to start the bot.
    Also make sure all the keys are bound correctly/

Similar Threads

  1. [Goldfarming] [Witch Doctor] [AutoIT] ACT 1 Cellar Farming Bot
    By avatar88343 in forum Diablo 3 Bots and Programs
    Replies: 310
    Last Post: 06-11-2012, 11:05 AM
  2. [AutoIT] Act 2 Goblin farming ( Barb)
    By meta23 in forum Diablo 3 Bots Questions & Requests
    Replies: 0
    Last Post: 06-10-2012, 11:13 PM
  3. Sarkoth Gold Farm for Witch Doctor?
    By lostsk8r in forum Diablo 3 Bots Questions & Requests
    Replies: 1
    Last Post: 06-09-2012, 02:02 PM
  4. Witch Doctor Act 4 Inferno Farm WALKTHROUGH
    By misterchen in forum Diablo 3 Guides
    Replies: 1
    Last Post: 05-29-2012, 10:35 PM
All times are GMT -5. The time now is 02:21 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search