HOWTO FIX WALKING INTO WALL ISSUE
Attachment 8515
You need to adjust the location the script attempts to click to enter the cellar. Look for this line, somewhere around line 205 give or take depending on the version you're running.
Code:
RandClick("left", Round(300*$x_ratio), Round(80*$y_ratio), 5*$x_ratio, 5*$y_ratio) ;Entrance to cellar
On my 1280x720 (16:9) laptop I use
Code:
RandClick("left", Round(300*$x_ratio), Round(107*$y_ratio), 5*$x_ratio, 5*$y_ratio) ;Entrance to cellar
The top edge of your screen is 0, as you lower the position of the cursor the pixel location increases, so the bottom edge of my screen would be location 720. (seems upside down, I know, just trust me).
So, if you're walking directly into the wall, try INCREASING the Y value by increments of 5 until you start entering the cellar more often. You may find that you still miss it sometimes, so try lowering or raising your new value by increments of 2.
Goodluck!