can someone explain pickit code to me?

farmer007

New member
So I'm looking at the items the bot finds and there are a lot of white items that I don't want.

[Name] == ColossusVoulge && [Quality] <= Superior && [Flag] == Ethereal # [EnhancedDamage] >= 15 && [ToHit] == 3 && ([Sockets] == 0 || [Sockets] == 4)

how exactly do make the bot ignore white items but keeping the eth, superior etc?
 
Hope this helps

Any pickit line with a "#" showing will mean the bot will ID the item.

== means equals
!= means does not equal
>= means greater than or equal to
<= means less than or equal to
&& means AND
|| means OR
// means ignore - anything after // will be ignored
!= Ethereal = NON-ETHEREAL
== Ethereal = ETHEREAL
 

noiwillnot

New member
Hope this helps

Any pickit line with a "#" showing will mean the bot will ID the item.

== means equals
!= means does not equal
>= means greater than or equal to
<= means less than or equal to
&& means AND
|| means OR
// means ignore - anything after // will be ignored
!= Ethereal = NON-ETHEREAL
== Ethereal = ETHEREAL
Can you explain even more? I've tried looking at the pickit code and the things you wrote, and i cant really grasp how to get the bot to stop saving white cryptic axes, threshers and voulges.. it havent event picked up and stashed 1 eth one, and its not making sense to me..
 

Khawee

New member
Can you explain even more? I've tried looking at the pickit code and the things you wrote, and i cant really grasp how to get the bot to stop saving white cryptic axes, threshers and voulges.. it havent event picked up and stashed 1 eth one, and its not making sense to me..
You have to look at your specific pickit, but generally, if you are picking up every cryptic axe/threasher you probably have a line like this:
Code:
[Name] == ColossusVoulge && [Quality] <= Superior
[Name] == CrypticAxe && [Quality] <= Superior

This would pick up practically every one you find, so you need to add some additional filters.

To only pick up Ethereal cryptic axe:
Code:
[Name] == CrypticAxe             && [Quality] <= Superior && [Flag] == Ethereal

Only pickup giant threshers that are ethereral and have either 4 or 6 sockets
Code:
[Name] == GiantThresher            && [Quality] <= Superior && [Flag] == Ethereal && ([Sockets] == 4 || [Sockets] == 6)
 

farmer007

New member
basically if I change this code
Code:
[Name] == ColossusVoulge && [Quality] <= Superior && [Flag] == Ethereal # [EnhancedDamage] >= 15 && [ToHit] == 3 && ([Sockets] == 0 || [Sockets] == 4)
To
Code:
[Name] == ColossusVoulge && [Quality] == Superior && [Flag] == Ethereal # [EnhancedDamage] >= 15 && [ToHit] == 3 && ([Sockets] == 4)
I'll only get superior 4 socket colossus voulges.
either way I'm going to try it, I can live without cvs :)
 
Top