D2Clicker

Page 10 of 31 Previous  1 ... 6 ... 9, 10, 11 ... 20 ... 31  Next

View previous topic View next topic Go down

D2Clicker - Page 10 Empty Re: D2Clicker

Post by Sexen Wed Dec 04, 2013 8:41 pm

Yes I said I have all that working. How do I make the sequence (step by step) to roll the item but stop on the pre-described match lines? Again, I've made sure my codes were correct with \ as I am very familiar with editing codes and such. What are the button presses, mouse clicks, etc. That allow me to roll the item but stop if the matches come up? I tried with only one affix and it never stops.
Sexen
Sexen
Howling Spirit

Posts : 1956
Country : United States

Back to top Go down

D2Clicker - Page 10 Empty Re: D2Clicker

Post by Inversion Wed Dec 04, 2013 9:04 pm

I understand your problem is that the program doesn't stop when your desired affix comes up, right? If nothing wrong, it should automatically stop when the matches come up. There must be something wrong in your match lines. Check them again or post it here.

Inversion
Moon Knight

Posts : 28
Country : ???

Back to top Go down

D2Clicker - Page 10 Empty Re: D2Clicker

Post by Crepes Wed Dec 04, 2013 9:37 pm

I think it's actually just the fact that the documentation is very unclear as to how to run the program to check for a certain modifier. I was going to write a small guide to auto shrine crafting, perhaps tonight. Anyway, the / key is not used when crafting. It is used to manually check and see if a mod is on something. Say for example you already have a craft with a specific mod on it and want a better one. Pressing / on that would simply tell you whether or not you have you match: text setup correctly. To shrine craft something, have the shrine and item in your cube. Press + on the transmute button. Hover over the item and press alt+y. It will automatically check for your mods each time you roll.

I would try a very common modifier first in your match: text to make sure it's setup right. I will write a more detailed guide tonight
Crepes
Crepes
Bloodfire Rogue

Posts : 64
Country : United States

Back to top Go down

D2Clicker - Page 10 Empty Re: D2Clicker

Post by Sexen Thu Dec 05, 2013 1:42 am

Thanks Crepes you explained it perfectly. I was making it unnecessarily complicated and now its working just fine. Cookie for you!
Sexen
Sexen
Howling Spirit

Posts : 1956
Country : United States

Back to top Go down

D2Clicker - Page 10 Empty Re: D2Clicker

Post by Istaryu Thu Dec 05, 2013 4:27 pm

How can I make this work with D2SE?

Nothing happens when I move the cursor to the transmutate button, and nothing happens when i press y or alt+y

Before you ask anything, yes, I am running the game in windowed mode, no I dont use any maphacks ot other tools, just PlugY

Istaryu
Curst Guard

Posts : 738
Country : Hungary

Back to top Go down

D2Clicker - Page 10 Empty Re: D2Clicker

Post by Crepes Fri Dec 06, 2013 11:35 pm

Sexen wrote:Thanks Crepes you explained it perfectly. I was making it unnecessarily complicated and now its working just fine. Cookie for you!
Thanks Smile

How can I make this work with D2SE?

Nothing happens when I move the cursor to the transmutate button, and nothing happens when i press y or alt+y

Before you ask anything, yes, I am running the game in windowed mode, no I dont use any maphacks ot other tools, just PlugY
From my experience, you have to be using 800x600 resolution. Windowed mode is best. Do not maximize the winow, must be used at native size.

Though I may be wrong, that's just what I've experienced.
Crepes
Crepes
Bloodfire Rogue

Posts : 64
Country : United States

Back to top Go down

D2Clicker - Page 10 Empty Re: D2Clicker

Post by Istaryu Sat Dec 07, 2013 11:34 am

I am doing that, sir, still not working

Istaryu
Curst Guard

Posts : 738
Country : Hungary

Back to top Go down

D2Clicker - Page 10 Empty Re: D2Clicker

Post by Quirinus Fri Jan 10, 2014 4:59 pm

To speed up D2Clicker's image recognition/capture (and so, searching for items/text) in Vista and Win 7, it's best to disable Aero when playing D2. You can do it by right clicking the shortcut to D2 and disabling desktop composition in the properties. Then it will automatically disable desktop composition (Aero being one part of it) when you start D2, and enable it when you turn D2 off.

Or you can run this when you start D2 (and it will turn itself off when you close D2):
http://www.4shared.com/file/wrjaXlg8ba/D2DisableAero.html

The AutoIt file for it is here:
http://www.4shared.com/file/l1Wq1vkDce/D2DisableAero.html

This is the code (ignore the first 4 commented lines):
Code:
;#include <WinAPI.au3>

;#include <WindowsConstants.au3>

;#NoTrayIcon

;_Singleton("DisableAero")



 Global Const $DWM_EC_DISABLECOMPOSITION = 0 ;disable desktop composition ("aero") to increase recognition speed in windowed mode

 Global Const $DWM_EC_ENABLECOMPOSITION = 1 ;as above, but to enable



 Global Const $d2_window_title = "Diablo II"

 Global $d2_handle

 Global $state

 Global Const $sleep_check_d2_active = 250  ;time to wait between checks to see if d2 is turned on (if it's off)

 

Func UpdateState($update_d2_handle)

 $state = WinGetState($d2_window_title)

 if $update_d2_handle AND BitAND($state, 1) then

 $d2_handle = WinGetHandle($d2_window_title)

 endif

 return BitAND($state, 1)

 EndFunc

 



$not_disabled_once = True

 while UpdateState(True)

 if $not_disabled_once then ;if not minimized or already disabled before

 Switch @OSVersion

 case "WIN_2008R2","WIN_7","WIN_2008","WIN_VISTA" ;aero exists (and can be turned off) only on those version

 DllCall("dwmapi.dll", "hwnd", "DwmEnableComposition", "uint", $DWM_EC_DISABLECOMPOSITION)

 $disabled_once = False

 EndSwitch

 endif

 Sleep($sleep_check_d2_active)

 Wend
Quirinus
Quirinus
Creature of Flame

Bloody High Five
Posts : 5572
TGGood none
Country : Croatia

Back to top Go down

D2Clicker - Page 10 Empty Re: D2Clicker

Post by callmecrazy Sun Jan 12, 2014 5:37 am

I have a question...
In the config file, what would I type to have the clicker look for like:
a certain % or greater poison pierce
a certain % or greater poison spell damage

I'm unsure how to type those out, with what I think it is supposed to be it never stops.
-15%toenemypoison
+20%topoisonspell
?

Edit: When I put in

-1%toenemypoison
+1%topoisonspell

It will stop when one of them is true.

callmecrazy
Steelfur Titan

Posts : 72
TGBest 1
Country : United States

Back to top Go down

The author of this message was banned from the forum - See the message

D2Clicker - Page 10 Empty Re: D2Clicker

Post by Sponsored content


Sponsored content


Back to top Go down

Page 10 of 31 Previous  1 ... 6 ... 9, 10, 11 ... 20 ... 31  Next

View previous topic View next topic Back to top


 
Permissions in this forum:
You cannot reply to topics in this forum