D2Clicker

Page 16 of 31 Previous  1 ... 9 ... 15, 16, 17 ... 23 ... 31  Next

View previous topic View next topic Go down

D2Clicker - Page 16 Empty Re: D2Clicker

Post by cocacola89 Thu Jul 10, 2014 7:50 am

I have a question need help:
When I use D2clicker, I don't know how to it craft next shirne, it only craft shire on Horadric cube
and this match is right ? seem it isn't right, new item don't look like it.

Code:
# DEFINE A PATTERN TO MATCH
###########################
match: 350tomaximumdamage
match: 6tonecromancerskilllevels
match: 350enhanced
match: 100tominimumdamage
# Multiple 'match' lines require each individual one to match (logic AND).
# Multiple patterns defined on a single 'match:' line requires at least one of them to match (logic OR)


# the following definition corresponds to a weapon with either greater or equal to +375 to mini/maxi-mumdamage or at least adds 10-100 damage:
match:-fire -cold -lightning -poison 375mumdamage 10000damage
# AND some on-kill proc
match:whenyoukill
# AND at least 250% enhanced damage
match:250enhanced


cocacola89
Moon Knight

Posts : 29
Country : Vietnam

Back to top Go down

D2Clicker - Page 16 Empty Re: D2Clicker

Post by Quirinus Thu Jul 10, 2014 8:35 am

try this, you didn't comment out the example:

Code:
# DEFINE A PATTERN TO MATCH
###########################
match: 350tomaximumdamage
match: 6tonecromancer
match: 350enhanced
match: 100tominimumdamage
# Multiple 'match' lines require each individual one to match (logic AND).
# Multiple patterns defined on a single 'match:' line requires at least one of them to match (logic OR)


# the following definition corresponds to a weapon with either greater or equal to +375 to mini/maxi-mumdamage or at least adds 10-100 damage:
#match:-fire -cold -lightning -poison 375mumdamage 10000damage
# AND some on-kill proc
#match:whenyoukill
# AND at least 250% enhanced damage
#match:250enhanced
Quirinus
Quirinus
Creature of Flame

Bloody High Five
Posts : 5572
TGGood none
Country : Croatia

Back to top Go down

D2Clicker - Page 16 Empty Re: D2Clicker

Post by Milkah Sun Jul 27, 2014 6:11 pm

Hello, I've been using this program nicely to reroll with dragons and shrines, but when I try to make it clear the junk from the ground, all it does is pickup and drop items and eventually it crashes. What should I do to make it work?

Milkah
Asatruar

Posts : 19
Country : Italy

Back to top Go down

D2Clicker - Page 16 Empty Re: D2Clicker

Post by Quirinus Sun Jul 27, 2014 8:45 pm

never used it for that. no idea.

you can always use this:
disappear_misc:1

it helps a bit.
Quirinus
Quirinus
Creature of Flame

Bloody High Five
Posts : 5572
TGGood none
Country : Croatia

Back to top Go down

D2Clicker - Page 16 Empty Re: D2Clicker

Post by Milkah Mon Jul 28, 2014 8:04 am

Quirinus wrote:never used it for that. no idea.

you can always use this:
disappear_misc:1

it helps a bit.

What is that? and where do I have to write it?

Milkah
Asatruar

Posts : 19
Country : Italy

Back to top Go down

D2Clicker - Page 16 Empty Re: D2Clicker

Post by Quirinus Mon Jul 28, 2014 4:03 pm

it's in the clicker.ini

tested it now and it seems it doesn't work... dunno

it basically modifies the time it takes for the game to remove the stuff from the ground. 0 is normal, and anything else is in seconds.
Quirinus
Quirinus
Creature of Flame

Bloody High Five
Posts : 5572
TGGood none
Country : Croatia

Back to top Go down

D2Clicker - Page 16 Empty Re: D2Clicker

Post by Darthaghar Sat Aug 02, 2014 7:09 pm

Ok i have been using this tool abit i am using it in normal game with no d2se (with d2se i can't make it work for some reason it actually has some kind of compatability as i see but abit hard to workaround cuz im in windows 8.1) anyways i have a question i have know there is a way to do this and im gonna ask the most stupid question of this thread but ? i read in the clicker.ini file there is "Logic OR" and "Logic AND" and i wan't to reroll a specific kind of atribute AND OR other specific kind of atribute on an item... what symbols or buttons in the keyboard represent thoose because i can't figure that out.
Darthaghar
Darthaghar
Jungle Hunter

Posts : 21
Country : Bulgaria

Back to top Go down

D2Clicker - Page 16 Empty Re: D2Clicker

Post by Quirinus Sat Aug 02, 2014 8:15 pm

by AND OR you mean you definitely want property1 but property2 is optional? there's no real way to define it imo, since the match only returns "found" or "not found", and in your case you'd need "both found", "property1 found" and "none found". also there's no real criterion to define your "maybe" situation.

the best you can do is:
search for property1 and check for property2 manually

OR

make it search for both property1 and property2


Last edited by Quirinus on Sat Aug 02, 2014 8:19 pm; edited 1 time in total
Quirinus
Quirinus
Creature of Flame

Bloody High Five
Posts : 5572
TGGood none
Country : Croatia

Back to top Go down

D2Clicker - Page 16 Empty Re: D2Clicker

Post by Darthaghar Sat Aug 02, 2014 8:19 pm

what i meant was i wan't property 1 and property 2 which i write in the same line and property 1 or 2 is not required as long as one of them is present the roll stops i said both examples because i wan't to know how i can do it.. well i know how to do the AND statement it's just simply starting a new line and it's gonna require that stat and keep rolling until it presents property 3 so i definitly wan't 3 but i also wan't 1 OR 2.
i found this in the Clicker.ini "Multiple patterns defined on a single 'match:' line #requires at least one of them to #match (logic OR)" so what i wanna know is what logic OR means i know what it does i just don't know how to write it down in the clicker.ini file and what symbol is used to for example "match:fastercastrate&fasterhitrecoveryrate" and here "&" is the symbol OR


Last edited by Darthaghar on Sat Aug 02, 2014 8:26 pm; edited 1 time in total
Darthaghar
Darthaghar
Jungle Hunter

Posts : 21
Country : Bulgaria

Back to top Go down

D2Clicker - Page 16 Empty Re: D2Clicker

Post by Quirinus Sat Aug 02, 2014 8:24 pm

both
match: property1
match: property2

just one of them
match: property1 property2




if you want to add a property3 to that, and you want to always get it, then it's like this:

all 3
match: property1
match: property2
match: property3

just one of 1 or 2; always finds 3
match: property1 property2
match: property3
Quirinus
Quirinus
Creature of Flame

Bloody High Five
Posts : 5572
TGGood none
Country : Croatia

Back to top Go down

D2Clicker - Page 16 Empty Re: D2Clicker

Post by Sponsored content


Sponsored content


Back to top Go down

Page 16 of 31 Previous  1 ... 9 ... 15, 16, 17 ... 23 ... 31  Next

View previous topic View next topic Back to top


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