Originally Posted by
g00dday
JUst tested and works amazing
Originally Posted by
DiabloFanatic
Works really well.
Thanks!
Originally Posted by
g00dday
also it seems like notAres' and yours are almost the same scripts
Originally Posted by
edsel6502
Read the credits. Its kinda incestuous the way the code is

Markus -> NotAres -> Shimozoki -> NotAres -> Forked
Oh you know how we like it. And were both men, so Homosexual Incest? Bromance?
Originally Posted by
runtalan
You should put this up on github

Lol its not that fancypants...
Originally Posted by
hhumpii
Hi guys. I am pretty new to this so please bare with me! I am getting very inconsistent results. Most of the time it will get stuck at the wall, beside the Dank Cellar instead of going into the opening. This is about 80-90% of the time. There are a few times when the script runs flawlessly. Going into the opening without any problems and clicking into the Dank Cellar, killing then looting then porting back to town then leaving. However when the script starts again it will usually end up running into the same wall beside the Dank Cellar
Ill try and post a pic of what I mean.
https://i.imgur.com/AGjed.jpg
My screen resolution for windows7 is 1366x768. and my diablo3 is in windowed fullscreen. I've run it at 3 different resolutions. (1280x720 1360x768 and 1366x76

My Move Speed and Radius match the one in the ini. file.
Let me know if I can give you more info. thanks a bunch for this.
People with a non 16:9 resolution running diablo in 16:9 often have minor hiccups like this. You need to change some of the coordinates. Another problem is that smaller monitors are less forgiving to pixel variance. By making it random, 3 pixels on a large monitor is nothing, but on a small monitor is quite alot.
Near Line 220 is:
Code:
RandClick("left", Round(300*$x_ratio), Round(80*$y_ratio), 5*$x_ratio, 5*$y_ratio) ;Entrance to cellar
Try making it this:
Code:
RandClick("left", Round(300*$x_ratio), Round(75*$y_ratio), 3*$x_ratio, 3*$y_ratio) ;Entrance to cellar
It should make you click a tad higher, aswell as in a bit tighter of a radius, you may have better luck with it.