PickIT question - bot wont pick up eth threshers, CA etc.

noiwillnot

New member
I don't know if this is the right forum. If it isn't, im sorry and please guide me to right forum.

The problem is my bot wont pick up any eth threshers, great poleaxes etc. I have this code in my pick-it. I've read the pickit tutorial, and i cant really figure out what is wrong with this..

[Name] == CrypticAxe && [Quality] <= Superior && [Flag] == Ethereal # [EnhancedDamage] >= 15 && [ToHit] == 3 && ([Sockets] == 0 || [Sockets] == 4 || [Sockets] == 5)
[Name] == GreatPoleaxe && [Quality] <= Superior && [Flag] == Ethereal # [EnhancedDamage] >= 15 && [ToHit] == 3 && [Sockets] == 4
[Name] == Thresher && [Quality] <= Superior && [Flag] == Ethereal # [EnhancedDamage] >= 10 && ([Sockets] == 0 || [Sockets] == 4 || [Sockets] == 5)
[Name] == Mancatcher && [Quality] <= Superior && [Flag] == Ethereal # [EnhancedDamage] >= 10 && ([Sockets] == 0 || [Sockets] == 4 || [Sockets] == 5)
[Name] == ColossusVoulge && [Quality] <= Superior && [Flag] == Ethereal # [EnhancedDamage] >= 15 && [ToHit] == 3 && ([Sockets] == 0 || [Sockets] == 4)

Is it because it HAS to be superior, before the bots picks it? Im so confused...
 
Is it because it HAS to be superior, before the bots picks it? Im so confused...
Yes.

&& means AND
|| means OR

For example:

Given: [Name] == Thresher && [Quality] <= Superior && [Flag] == Ethereal # [EnhancedDamage] >= 10 && ([Sockets] == 0 || [Sockets] == 4 || [Sockets] == 5)

The Tresher is picked, when it's superior and eth and has ehd greater then equal 10 and has 0 or 4 or 5 sockets.
 
Last edited:
Yes.

&& means AND
|| means OR

For example:

Given: [Name] == Thresher && [Quality] <= Superior && [Flag] == Ethereal # [EnhancedDamage] >= 10 && ([Sockets] == 0 || [Sockets] == 4 || [Sockets] == 5)

The Tresher is picked, when it's superior and eth and has ehd greater then equal 10 and has 0 or 4 or 5 sockets.
Thanks! So how do i make it pick up both nonsuperior eth and superior eth 4 sockets? 🤨. Remove the '&&'?
 
nope you kinda just answered your own question :p. atm your rule say only pick superior 10%ed 4-5socket eth wep. so you just change superior to 1 below so it will keep that +sup.
So if i change the superior % to 9, it will both pick up non superior eth threshers and superior ones? Sorry if im brainless, but i really dont understand
 
So if i change the superior % to 9, it will both pick up non superior eth threshers and superior ones? Sorry if im brainless, but i really dont understand
nope, you have to change the word superior so it looks at one below so it knows to only keep normal+ as an example. bot looks at it like this, what item? what quality? etheral/non/both? stats?
 
nope, you have to change the word superior so it looks at one below so it knows to only keep normal+ as an example. bot looks at it like this, what item? what quality? etheral/non/both? stats?
So i can change the word superior to normal, and it will still use the rule to be ethereal and have 4-5 open sockets?
 
Or would it work to write "Normal || Superior""?
well now that i actually looked at your pickit it should already be doing that but its just set up weird so i didnt notice it right away.
atm [Name] == Thresher && [Quality] <= Superior (means less then equal to, so it should pick up both superiors and normal as long as it qualify with enhanced dmg rule+socket)
 
well now that i actually looked at your pickit it should already be doing that but its just set up weird so i didnt notice it right away.
atm [Name] == Thresher && [Quality] <= Superior (means less then equal to, so it should pick up both superiors and normal as long as it qualify with enhanced dmg rule+socket)
My point exactly, so i dont understand why it dosent do that 🥴. How would you set it up?
 
i have same problem maybe,
he find pick and keep thresher without ED but in pickit its this

[Name] == Thresher && [Quality] <= Superior && [Flag] == Ethereal # [EnhancedDamage] >= 10 && ([Sockets] == 0 || [Sockets] == 4 || [Sockets] == 5)

[EnhancedDamage] >= 10 means 10 or higher? or not ?
 
i have same problem maybe,
he find pick and keep thresher without ED but in pickit its this

[Name] == Thresher && [Quality] <= Superior && [Flag] == Ethereal # [EnhancedDamage] >= 10 && ([Sockets] == 0 || [Sockets] == 4 || [Sockets] == 5)

[EnhancedDamage] >= 10 means 10 or higher? or not ?
Sure you dont have another line, which states to pick normal threshers also? I had that to begin with.
 
//UNIQUE POLEARMS
[Name] == Thresher && [Quality] == Unique && [Flag] == Ethereal # [EnhancedDamage] >= 120 && [LifeLeech] >= 5 //ETH THE REAPER'S TOLL


[Name] == Thresher && [Quality] <= Superior && [Flag] == Ethereal # [EnhancedDamage] >= 10 && ([Sockets] == 0 || [Sockets] == 4 || [Sockets] == 5) //INFINITY, INSIGHT, OBEDIENCE, DESTRUCTION, DOOM


no only this too, but the other one is a unique i think

[Name] == Thresher && [Quality] <= Superior && [Flag] == Ethereal # [EnhancedDamage] >= 10 && ([Sockets] == 0 || [Sockets] == 4 || [Sockets] == 5) //INFINITY, INSIGHT, OBEDIENCE, DESTRUCTION, DOOM
some here wrong? or corret like this ?
 
No idea - still trying to get mine to pick up normal eth threshers with 4 sockets 🙄
you just put what you say to line Q_Q. normal eth thresher 4socket. thats if you just want normal eth 4 socket thresher.
== means equals
!= means does not equal
>= means greater than or equal to
<= means less than or equal to
&& means
|| means OR // means ignore - anything after // will be ignored
 
Back
Top