What were the changes made in 1.99.99 from 1.99? I was running 1.99 last night and today and it is running very well. I just need a couple more yards of pickup radius.
i got problem getting the _imagesearch to work, tried swaping the DLLS, and taking my own SS still ddint work
Fixed the autostart to work properly if set to false and added a left to right for looting gold, noticed alot people were stating that the bot was missing gold. Shimizoki came up with a better Tesseract that I'll be adding sometime today. There won't be an auto update with that though.
@Everyone
If you need help install Team Viewer. Private message me with the following info in the message:
- Explanation of your problem
- Team Viewer ID
- Password
Team Viewer Download: http://www.teamviewer.com/en/download/index.aspx
Last edited by chancity; 06-21-2012 at 12:14 PM.
Thanks a lot for the info. I'll have to update then, I noticed that I would very infrequently miss some piles. I'll wait for your update with the better Tesseract and just do it all at the same time. I guess you'll update the zip when that is ready?
I really appreciate all of your hard work, you have done an amazing job. Keep up the great work!
well...anyway... I never did get a chance to show you the setup I was talking about, but what I was trying to say was two things, a.) the script works with 8k dps, "required" 15 is an extreme exaggeration. It does require 1 tiny tweak though, but run time is actually the same. b.) with 275% mf and 250% gf, I'm actually making more money per day from item sales than GF, and I wanted to show you its viability, I think you can make a LOT more money with it.
Last edited by LATM; 06-21-2012 at 01:53 PM.
Hi all, thanks very much to all worked for this script (chancity...)
Ok i'm not english but i'll try to expose you my big problem with the script.
I downloaded all files.
1. First, i dont find in the WZR.ini any line for the location of the PNGs??
[Auto Start]
Auto Start=True
Game Location=D:\Jeux\Diablo III
Game Start Time=9000
Updater Start Time=5000
Password=x
Task Manager Executable Name=Diablo III.exe
[Custom Loot]
Total Items=1
?
2. I put all the dlls in the System32 folder
3. In downloaded Tesseract-OCR on internet (3.0.1.) and installed it
---> which file do i have to put in into "C:\Program File (x86)\AutoIt3\Include" please? i've tryed include all nothing work. But i see in this folder they are only .au3 files, well i don't have any tesseract.au3 file after the installation of the program.
When i lauch the script (in 64x), i've got this error:
Line 20 (File "C:\...\Dank Cellar Wizard.au3"):
#Include <tesserect.au3>
Error: Error opening the file.
(just a little remark here the error is about tesserEct.au3 and not tesserAct.au3 is that normal? I've tryed the 2 of course is doesn't work)
I've search in the post all could help me resolve the problem: i haven't find anything (except on your message 236 for the barbarian post i think it was you chancity don't remember, but i didn't understand what could help in it after realy try to understand it)
I don't undesrtand anything about programmation but i've tryed many things for five hours nothing works :-////////
Can you PLEASE PLEASE help me because i think i'm gonna become crazy with it lol
Thank you VERY MUCH for your future help and please explain me the solutions in easy english :-)
D3Fan
Last edited by D3Fan; 06-22-2012 at 05:30 PM.
Everytime i look at the log it shows legendaries picked up. but it is never shows up in the stash. anyone know why?
I think it is because sometimes it thinks the lamp post is a legendary because of the colour. So it clicks on it, the click is registered and the counter is incremented. Someone please correct me if I'm wrong.
I would recommend changing the identify option to false, so it doesn't identify a legendary and vendor it by mistake.
So,today I had a chance to test the Autorelog feature.
Unfortunately,it didn't work for me.
1)Router crashes.
2)You have been disconnected from the server.
3)Nothing else.
Starting from the desktop seems to work fine,but the relog function doesn't work for me.
Am I doing something wrong,or is it bugged?
Don't know if you really care but I added comma's to my gold numbers I found the script on autoits forum I did not write it myself.
basically create a new file to include or just add to bottom of your code i went with the include just so mine looked cleaner and was out of the way for my bot coding
then in your script for the calls to the gold numbers(maybe items looted if you choose to, it doesn't really hurt but prob wont ever hit that high I think i average around 836 magic items in 10 hour session)Code:Func _StringAddThousandsSep($sString, $sThousands = ",", $sDecimal = ".") Local $aNumber, $sLeft, $sResult = "", $iNegSign = "", $DolSgn = "" If Number(StringRegExpReplace($sString, "[^0-9\-.+]", "\1")) < 0 Then $iNegSign = "-" ; Allows for a negative value If StringRegExp($sString, "\$") And StringRegExpReplace($sString, "[^0-9]", "\1") <> "" Then $DolSgn = "$" ; Allow for Dollar sign $aNumber = StringRegExp($sString, "(\d+)\D?(\d*)", 1) If UBound($aNumber) = 2 Then $sLeft = $aNumber[0] While StringLen($sLeft) $sResult = $sThousands & StringRight($sLeft, 3) & $sResult $sLeft = StringTrimRight($sLeft, 3) WEnd $sResult = StringTrimLeft($sResult, 1); Strip leading thousands separator If $aNumber[1] <> "" Then $sResult &= $sDecimal & $aNumber[1] ; Add decimal EndIf Return $iNegSign & $DolSgn & $sResult ; Adds minus or "" (nothing)and Adds $ or "" EndFunc ;==>_StringAddThousandsSep
and the writing to textfileCode:If $GPH >= 0 and $AccumulatedGold >=0 then GUICtrlSetData($StartingG, "Starting Gold: " & _StringAddThousandsSep($StartingGold)) GUICtrlSetData($AccumulatedG, "Gold Earned: "& _StringAddThousandsSep($AccumulatedGold)) GUICtrlSetData($lblGold, "Gold Per Hour: " & _StringAddThousandsSep($GPH)) GUICtrlSetData($TotalGold, "Total Gold: " & _StringAddThousandsSep($CurrentGoldInteger)) EndIf
Code:"Starting Gold: " & _StringAddThousandsSep($StartingGold) & " Gold Per Hour: " & _StringAddThousandsSep($GPH) & " Gold Earned: " & _StringAddThousandsSep($AccumulatedGold) & @CRLF & _ "Total Gold: " & _StringAddThousandsSep($CurrentGoldInteger) & @CRLF & _
I may have changed the variable names from yours so you cant really copy and paste but you get the idea. I added total gold as i normally dont look at my starting gold and just like to see it there to notice the difference myself.