[Goldfarming] Dank Celler Gold and Loot [AutoIT Script] [WIZARD] [1920x1080] menu

Shout-Out

User Tag List

Page 18 of 298 FirstFirst ... 14151617181920212268118 ... LastLast
Results 256 to 270 of 4467
  1. #256
    RobertBobson's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well, my changes start earlier in the script and end later, some are interspersed, but the order is important:


    Code:
               $celrmovewait=2200 ;Time (in ms) the script will wait for you to walk from the end of the teleport line to in front of the cellar.  Slow this down for slower move speeds
    
    
                MouseMove(Round(0 * $x_ratio),Round(250 * $y_ratio), 1) ;starts the main run
                Send("{3 down}")
                Sleep(1600)
                Send("{3 up}")
                Send($DiamondSkin)
    
                $celrwait=0
                Do
                   sleep(20)
                   $celrwait=$celrwait+1
                   $Pixel28 = PixelSearch(Round(550*$x_ratio),Round(550*$y_ratio), Round(100*$x_ratio), Round(100*$y_ratio),0x668CE7, 37) ; Save time if cellar isn't there
                Until (Not @Error OR $celrwait=10)
                
                if Not @error Then
                   MouseClick("middle",Round(0*$x_ratio),Round(700*$y_ratio)) ;get a better view of the cellar for better identification - reduces miss clicks
                   Moving($celrmovewait)
                EndIf
                
                If CheckDead() Then
                    Return
                EndIf
    
                $celrwait=0
                Do
                   sleep(20)
                   $celrwait=$celrwait+1
                   $Pixel2 = PixelSearch(Round(1269*$x_ratio),Round(337*$y_ratio), Round(797*$x_ratio), Round(0*$y_ratio),0x668CE7, 10)
                Until (Not @Error OR $celrwait=3)
    
                If Not @error Then   
                   MouseMove($Pixel2[0],$Pixel2[1]) ; Move mouse on cellar to change the color of the pixels to be brighter to avoid false positives
                   Sleep(300) ; Give the cursor time to move
                   $celrwait2=0
                   Do
                      sleep(20)
                      $celrwait2=$celrwait2+1
                      $Pixel23 = PixelSearch(Round(1269*$x_ratio),Round(337*$y_ratio), Round(797*$x_ratio), Round(0*$y_ratio), 0xAFEEFB, 5) ; Make sure it's cellar and not mob
                   Until (Not @Error OR $celrwait=5)  
                EndIf
                If Not @error Then
                    GUICtrlSetData($lblStatus, "Status: Cellar - Found")
                    $cellarCount += 1
                    MouseClick("left",$Pixel23[0],$Pixel23[1]) ;Entrance to cellar
    Last edited by RobertBobson; 06-20-2012 at 05:45 PM.

    [Goldfarming] Dank Celler Gold and Loot [AutoIT Script] [WIZARD] [1920x1080]
  2. #257
    RobertBobson's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Basically, it teleports over, looks for the cellar, this check has a tendency to get the occasional false positive, but that's ok because we do more checks later. If it doesn't find it, it teleports out. Fast. If it thinks the cellar is there, then it will walk closer to the cellar - this gives us a much bigger and more accurate area to detect pixels on. Finally, it moves the cursor on the box, and does one more check for a brighter pixel that has a very little chance of a false positive (the colors used in the unselected box are shared by mobs sometimes and can throw more false positives). If it still doesn't see the cellar, then it teleports out. If it sees it, it clicks. The speed of execution is very close to the original script, but the accuracy is much higher. At least for me it has been.

    K, removed useless stuff. There are some bits of code in between that aren't mine, but I need to leave them in there for reference.
    Last edited by RobertBobson; 06-20-2012 at 05:37 PM.

  3. #258
    GazCamp3r's Avatar Corporal
    Reputation
    1
    Join Date
    Apr 2012
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    its not working for me it starts the game, then open my inv, then say some error

    [Goldfarming] Dank Celler Gold and Loot [AutoIT Script] [WIZARD] [1920x1080]-fail_www-kepfeltoltes-hu_-png

    edit: as u can see, ive renamed the au3, but i dont think that the problem is with the script name

  4. #259
    tempperson34856's Avatar Sergeant
    Reputation
    2
    Join Date
    Jun 2012
    Posts
    51
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Another thing you might want to add is to change the location of the OCR program from the #include to the .ini configuration - if you're running a 32 bit system, as it is now, you have to go into the #include and change the location of the tesseract install manually - a .ini variable would be easier (like for the pics directory)

    On that note, the OCR program is so inaccurate as to be effectively useless for me right now. I get all sorts of random values out of it. A great idea, and certainly not necessary, but thought I'd pass along my experience with it.

    Edit: GazCamp, this looks like either a) Tesseract isn't installed in the expected location (unlikely, since that'd give you a different error) or b) you're running into the 'extremely inaccurate gold readings' that I keep hitting (see above), and it's trying to write a rediculous amount of gold into the script and overflowing into an error (hasn't happened to me yet, knock on wood). Try disabling the OCR/gold reporting feature, and it should work fine. If you're not sure how to do this, one easy (sort-of) fix go into the #include file and change the tesseract install location - it'll give you an error when you start the script, but just click okay through that and it'll work fine. A cleaner alternative would be to comment out the script code involving Tesseract.
    Last edited by tempperson34856; 06-20-2012 at 05:43 PM.

  5. #260
    GazCamp3r's Avatar Corporal
    Reputation
    1
    Join Date
    Apr 2012
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i tried to command out the include tesseract thing from the script (put a ; before the line), but the error was the same... than i tried to change install location from the tesserract.au3.. .still the same

    i did everything exaclty as the description said

  6. #261
    Dator4's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Chancity: Would you be willing to see why I am having problems with the script? I can PM you my teamviewer ID and pass. The issue is the mouse to the bottom left chat system and then it starts checking for the images but never finds any of them.

    Windowed (Full Screen)
    Res: 1920x1080 Native
    Pics location: script_directory/pics/*.png

  7. #262
    Lentoo7's Avatar Member
    Reputation
    1
    Join Date
    Mar 2010
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Quick question, installed, set up everything works perfectly BUT she never loots all the gold. Is there a certain loot radius I need (I'm at 7) or does she just pick up what she runs past while looting items?

  8. #263
    Bendiix's Avatar Active Member
    Reputation
    20
    Join Date
    Jun 2008
    Posts
    82
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    !Give me some +rep please! You should remove or you could end up losing all your rep if a mod sees it

  9. #264
    GazCamp3r's Avatar Corporal
    Reputation
    1
    Join Date
    Apr 2012
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i cant make it work :@

    starts the game, opens inventory, than error in line 807 (pic above) wtf? -.-

  10. #265
    chancity's Avatar Legendary
    CoreCoins Purchaser
    Reputation
    686
    Join Date
    Jun 2012
    Posts
    1,153
    Thanks G/R
    27/341
    Trade Feedback
    11 (55%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just added this for those whos games random close throughout the night. You can also start the script on your desktop and walk away. Use the auto update to get this please. If you're having issues feel free to send me your team viewer ID and Pass along with a description of your problem. I'll try to help you asap..

    Code:
    ;AutoStart
    $gameLoc = "E:\Diablo III\" ;Location of Diablo 3 executable
    $gameAutoStart = True ; Set this to true to start game from desktop or recover from closed game
    $gameUpdaterTime = 5000 ;Change depending on computer/internet speed
    $gameStartTime = 9000  ;Change depending on computer/internet speed
    $gamePassword = "Your Password" ;Symbols go in brackets "Password1{!}"
    $gameExecutable = "Diablo III.exe"
    
    Func IsGameOpen()
    If $gameAutoStart = True Then
    	If ProcessExists($gameExecutable) = True Then
    		$size = WinGetClientSize("[CLASS:D3 Main Window Class]")
    	ElseIf ProcessExists($gameExecutable) = False Then
    		GUICtrlSetData($lblStatus, "Status: Starting Game Client")
    		Run($gameLoc & $gameExecutable)
    		Sleep($gameUpdaterTime)
    		Send("{ENTER}")
    		Sleep($gameStartTime)
    		Send($gamePassword)
    		Sleep(1000)
    		Send("{ENTER}")
    		sleep($gameStartTime)
    		$size = WinGetClientSize("[CLASS:D3 Main Window Class]")
    	EndIf
    EndIf
    EndFunc
    Originally Posted by Lentoo7 View Post
    Quick question, installed, set up everything works perfectly BUT she never loots all the gold. Is there a certain loot radius I need (I'm at 7) or does she just pick up what she runs past while looting items?
    I have 17 pickup radius if that helps

    Originally Posted by GazCamp3r View Post
    i tried to command out the include tesseract thing from the script (put a ; before the line), but the error was the same... than i tried to change install location from the tesserract.au3.. .still the same

    i did everything exaclty as the description said
    You're going to have to comment out the goldperhour function too...

    Originally Posted by tempperson34856 View Post
    Another thing you might want to add is to change the location of the OCR program from the #include to the .ini configuration - if you're running a 32 bit system, as it is now, you have to go into the #include and change the location of the tesseract install manually - a .ini variable would be easier (like for the pics directory)

    On that note, the OCR program is so inaccurate as to be effectively useless for me right now. I get all sorts of random values out of it. A great idea, and certainly not necessary, but thought I'd pass along my experience with it.

    Edit: GazCamp, this looks like either a) Tesseract isn't installed in the expected location (unlikely, since that'd give you a different error) or b) you're running into the 'extremely inaccurate gold readings' that I keep hitting (see above), and it's trying to write a rediculous amount of gold into the script and overflowing into an error (hasn't happened to me yet, knock on wood). Try disabling the OCR/gold reporting feature, and it should work fine. If you're not sure how to do this, one easy (sort-of) fix go into the #include file and change the tesseract install location - it'll give you an error when you start the script, but just click okay through that and it'll work fine. A cleaner alternative would be to comment out the script code involving Tesseract.
    I'll see what I can come up with thanks for the idea.

    Originally Posted by Bendiix View Post
    !Give me some +rep please! You should remove or you could end up losing all your rep if a mod sees it
    touche
    Last edited by chancity; 06-20-2012 at 06:40 PM.

  11. #266
    NetherNewt's Avatar Member
    Reputation
    3
    Join Date
    May 2012
    Posts
    28
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    can we get 800x600?

  12. #267
    Dator4's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    13
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks for the help, I was floored that everyone was getting it beside me. Missing that image search au3 would cause a problem.
    +rep

  13. #268
    demikiddo's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by GazCamp3r View Post
    i tried to command out the include tesseract thing from the script (put a ; before the line), but the error was the same... than i tried to change install location from the tesserract.au3.. .still the same

    i did everything exaclty as the description said
    Hey chancity, i'm having the same issue as GazCamp3r. When I start the script, it opens up my inventory and then i get the error "tesseract.exe has stopped working" I tried a whole bunch of things and I've resorted to going back to your 1.93 verison and using that for now.
    Is there a possible way where you could compile the script without the new feature you added? I'm not exactly sure what's going with the script or how to "command" out the things I don't want

    Right now I'm still selling my legendarys

  14. #269
    GazCamp3r's Avatar Corporal
    Reputation
    1
    Join Date
    Apr 2012
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    the script is working fine for me now... (newest updated), but it isnt good... it go inside the room too close to sarkoth, and not killing hes minions, sometimtes not even sarkoth (i changed the attack time)

    edit: ive added a bit more dps, and its working fine now, but the script is missing the cellar entrance too many times i just watched 2 times in a row... miss clicked, than teleported back to town :-/ ) This random clicks thing isnt so good after all
    Last edited by GazCamp3r; 06-20-2012 at 07:33 PM.

  15. #270
    bottingbrah's Avatar Private
    Reputation
    1
    Join Date
    Jun 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Updated the script, and having a new and only problem.

    I kill sarkoth, go in initially, then my guy clicks up near the corner of the table/lamp area and stays there then TPs out and sometimes grabs loot sometimes not.

    but every time he clicks up near the table repeatedly and gets stuck.

    also should mention this has never happened before in the previous 3+ versions.
    Last edited by bottingbrah; 06-20-2012 at 07:33 PM.

Similar Threads

  1. Replies: 440
    Last Post: 10-31-2012, 11:00 AM
  2. Replies: 272
    Last Post: 08-14-2012, 03:33 PM
  3. Replies: 3
    Last Post: 07-31-2012, 06:54 PM
  4. Replies: 37
    Last Post: 07-18-2012, 02:37 PM
  5. Replies: 164
    Last Post: 07-01-2012, 02:37 PM
All times are GMT -5. The time now is 09:10 AM. 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