My DH is lvl 52 so I can't use nether tentacles yet. Despite that I don't see how this could be an issue, but I will just throw that out there anyways. The problem I'm having is despite me have +25% movement speed he never makes it to the cellar. Do levels do something to your speed that I'm unaware of?
So after 3 nights or so this is what i've gotten
Also I changed a the script a bit so it works better for me and everytime when it has to resume/left/joined the game it will close all windows first then it will start doing the stuff its supposed to do.
Here is the script if anyone is interested.
D3 script Dank Cellar - Pastebin.com
The PNG's I use: http://www.mediafire.com/?rj8i9bj2pdt53ja
Requirements:
Change close all windows to the button "z" instead of "space"
Resolution 1920*1080
Also I disabled picking up legendary's as it will click the wood next to the lamp!
Last edited by kevink88; 06-13-2012 at 11:08 AM.
Without sounding needy has anyone modified this script to randomly click in the target areas (looking at the resume button, pathing etc) that wouldn't mind sharing?
NotAres, I just wanted to say thank you for all your work and the script, its works great for me! However, given the new hotfix and updates to D3, is their anyway you can confirm or at least guess whether the script is safe to continue to use? Also, maybe any modifications like a sleep timer or chat log that might make it safer perhaps? Thanks again, I hope you can clear this question up for me.
Random Clicking Function
Anywhere there was MouseClick, I replaced withCode:Func RandClick($clickType, $xPos, $yPos, $xOff = 20, $yOff = 20) $randX = Round(Random($xPos-($xOff*$x_ratio), $xPos+($xOff*$x_ratio))) $randY = Round(Random($yPos-($yOff*$y_ratio), $yPos+($yOff*$y_ratio))) MouseClick($clickType, $randX, $randY) EndFunc
For Movement/Interaction. (Keep in mind the x, y coords need to not be changed)Code:RandClick("left", Round(300*$x_ratio), Round(70*$y_ratio), 10, 10)
OR
For when I was attackingCode:RandClick("right", Round(620*$x_ratio), Round(20*$y_ratio))
You will have to play around a bit on your system to get the variation just right.
EDIT::
USAGE
ClickType = "left", "middle", "right", "primary", "secondary" ;What button to click
xPos, yPos ; The X and Y coordinates to click
xOff, yOff ; Offsets for the click in the X and Y dimension, xOff = 3 means you will click somwhere between xPos-3 and xPos+3.
Last edited by Shimizoki; 06-13-2012 at 10:13 AM.
-Darkling Lord
@ Shimizoki,
hey mate i just woke up wanted to ask if solution for the "limit" error was found yet?
@fukker
The limit error was removed because it wasnt working as intended. Farm while you still can.
P.S. I feel dirty saying your name.
-Darkling Lord
Must have been reinforced because I just got a limit and can't make games again.
@Shim
What does the Round mean in:
Code:RandClick("right", Round(620*$x_ratio), Round(20*$y_ratio))