pickit for magic pally JMODs

tried the following but cannot get it to work. thoughts on this?
does it need to be type instead of name?
Code:
[name] == auricshields && [quality] == magic && [flag] != ethereal # [sockets] == 4 && [fbr} == 30]

i may just have to list the name of every individual shield.
sacred targe
vortex
etc
 

NukePunch

Member
tried the following but cannot get it to work. thoughts on this?
does it need to be type instead of name?
[name] == auricshields && [quality] == magic && [flag] != ethereal # [sockets] == 4 && [fbr} == 30][/CODE]

i may just have to list the name of every individual shield.
sacred targe
vortex
etc
this means it only picks up Magic Anytype of Paladin shield. with 30FBR and 4 Socket.
[name] == auricshields && [Class] >= Elite && [quality] == Superior && [flag] != ethereal # [sockets] == 4
if you want magic shield with 30 FBR options. try this.
[name] == auricshields && [Class] >= Elite && [quality] == Magic && [flag] != ethereal # [sockets] == 4 [fbr] == 30]
 
Top