is there any way to have it stash ilvl63 magic items?
is there any way to have it stash ilvl63 magic items?
Great script. Good work Shimizokis.
Question: How are some of you guys getting GPH stats to show up? Mine only shows runs, cell spawn rate, deaths, and manage in countdown. Are you guys running a different version of the bot, modded by another author? Is there some setting I need to change?
Can any 1 help me?
It finds the cellar but it get stopped by the woodlog/fence and when its teleporting back to town it doesn't leave game.
ScreenRes: 1366x768 and ingame Windowed fullscreen 1280x720 because i cant get it to work if i change me screenres to 1280x720-
EDIT: nvm got it to work!
Last edited by lostmc; 07-02-2012 at 12:47 AM.
Screen Ress 1440x900 using 1280x720 had it working but it always stops before seeing the cellar door and cast caltrops and teleports to town rinse and repeat anyone help thanks.
Hey does anybody know how to stash gems? My bot vendors all of them =/
Hi all
it seem im having issue getting this bot to work
i installed everything as following the http://www.ownedcore.com/forums/diab...edits-etc.html ([GoldFarming][Guide]for Shimizoki's Sarkoth DH Script [AutoIt] Bot (.png edits etc)) instruction
when i try to run the script i first got the image unrecognized thingy and got that fixed however when i try to run the script by pressing the "=" nothing happens i know that the script is working coz when i press "X" it shut down so that part is working
what am i doing wrong ? anyone got any idea
running win7 64bit btw
cheers
Hi, First of all i'd like to thank the creator.
It took a bit to get working I am a bit hard headed and like to figure things out for myself without asking anyone.
It is working very well. The only problem I have is after a few hours 4-8 or so, my manage starts stacking this morning I found it saying manage in 46. Yesterday it said 120 something.
When I check it, then inventory is completely full and it's not selling.
Just curious if this is a known bug or it is only me.
Also. Quick question about some of the scripting. I want to get this working on my bot computer. But it doesnt work for obvious res issues, which isnt a big deal. But the problem is I need it to go a bit farther to reach the cellar.
How does the x, y. work exactly. The cords do not match cords on the screen via AutoIt window spy.. In better words can someone explain what this does exactly .
"RandClick("middle", Round(400*$x_ratio), Round(600*$y_ratio), 5*$x_ratio, 5*$y_ratio)"
My thinking was... Middle = 3rd mouse. Round x 400 (random) Round y 600 (random) being maybe 401 or 408 etc etc.
But after using window spy the cords don't match up even close.
Last edited by Maskim19; 07-02-2012 at 07:33 AM.
I've got a mash-up version of this script and the original NotAres version running a consistent 400K+ GPH over 8 hour sessions in 250 MF and 250 GF.
If you have a higher DPS gear setup in your GF set I reccommend editing the attack sequence in the cellar so it uses Spike Traps with the scatter rune. You only need to lay one set of traps to kill all the mobs. This should cut run time significantly. For the rare times Sarkoth has a little HP left after the traps blow I also have it set to use Fan of Knives with the rune that gives the 30 second shield that does 400+% weapon damage on hit. That's my insurance in case I get a bad trap placement. You will also probably need to adjust where the cursor points to slightly before it lays the traps to get the optimal positioning.
I would like to attempt adding vault in to the rotation, but we'll see.
Last edited by Ailurophile; 07-02-2012 at 07:38 AM.
Gamer at heart, artist in soul.
guys, please help me to run this scrip....
i'm running diablo 3 at 1600x900 as in screenshot here:
as long as i press "=" in the bottom left corner appears that statistic line form the script telling how many runs the bot done, and GPH and etc. but soon it gives me error like this:
actually the mouse is not even moving to try to locate the 'resume' button image...
all the files are in my custom folder (not C:\Your Path\) but i edited both files (*.au3 and *.ini) to match my directory.
..and i tried to cut the image of "resume" button but still don't work.... am i doing something wrong ? any suggestions?
this is from D3Prefs.txt
DisplayModeFlags "0"
DisplayModeWindowMode "2"
DisplayModeWinLeft "0"
DisplayModeWinTop "0"
DisplayModeWinWidth "1152"
DisplayModeWinHeight "864"
DisplayModeUIOptWidth "1600"
DisplayModeUIOptHeight "900"
DisplayModeWidth "1152"
DisplayModeHeight "864"
DisplayModeRefreshRate "60"
DisplayModeBitDepth "32"
Last edited by alloces; 07-02-2012 at 08:29 AM.
Okey, fixed, now the script starts, creating game but can not even reach the dank celler and teleporting to town...
you can see what the script is doing here:
LINK
any suggestions what cause this?
You dont have to useThats just used for making all 16:9 resolutions compatible.Code:RandClick("middle", Round(400*$x_ratio), Round(600*$y_ratio), 5*$x_ratio, 5*$y_ratio)
If you want to add in your own coords for your own script on a different resolution, just use:
If you still want random clicks (which you should), then use:Code:MouseClick("Middle") 400, 600You could also write your own function without the $x_ratio added such as:Code:MouseClick("middle",Random(398,402),Random(598,602))
Which would allow you to use:Code:Func RandClick($clickType, $xPos, $yPos, $xOff = 5, $yOff = 5, $clicks = 1, $speed = 4) If $xOff < 1 Then $xOff = 1 If $yOff < 1 Then $yOff = 1 $randX = Round(Random($xPos-$xOff, $xPos+$xOff)) $randY = Round(Random($yPos-$yOff, $yPos+$yOff)) MouseClick($clickType, $randX, $randY, $clicks, $speed) EndFunc Func RandMove($xPos, $yPos, $xOff = 5, $yOff = 5, $speed = 1) If $xOff < 1 Then $xOff = 1 If $yOff < 1 Then $yOff = 1 $randX = Round(Random($xPos-$xOff, $xPos+$xOff)) $randY = Round(Random($yPos-$yOff, $yPos+$yOff)) MouseMove($randX, $randY) EndFunc
The last code simply saying Click@ x400 with a 2 pixel variance, and click at y600 with a variance of 3 pixels.Code:RandClick("Middle", 400, 600, 2, 3)
They all accomplish the same thing, but using the above would allow you to find your own coords using the AutoIt spy window, and they would be correct since its not using ratios.