claustro 0 Report post Posted May 18, 2014 Hi guys , can someone explain me how add to all the default item looted all the wand , even the blue one? Thank you A. Quote Share this post Link to post Share on other sites
Delamonica 9 Report post Posted May 18, 2014 (edited) [Type] == "Prophecy Wand" && [Rarity] == "rare" [Type] == "Prophecy Wand" && [Rarity] == "magic" or [Type] == "Prophecy Wand" <-- for all rarities the bot would pick all prophecy wands . when u want other wands u have to check path of exile site for the wand names and make this rule for every single wand (depending on what lvl area u farm in) u can also use something like [Category] == "1Handed" && [Rarity] == "Rare" # [spell_damage_+%] >= "15" [Category] == "1Handed" && [Rarity] == "Magic" # [spell_damage_+%] >= "15" then u would pick all one handed weapons with spelldmg 15+ ( but daggers too) not sure if [Category] == "1Handed" && [Rarity] == "Rare" && [spell_damage_+%] >= "1" works maybe it could pick up all 1 handed weapons who have alrdy spelldmg unidentified (that would be wands) but i dont have time to try it out ^^ ps: i dont know if everything works as intended , its just what i would try out ! Edited May 18, 2014 by Delamonica Quote Share this post Link to post Share on other sites
bbones 3 Report post Posted May 18, 2014 (edited) Afaik this is what you want to pick up all one handed items which have spell damage implicit mod (add rarity as needed): [Category] == "1Handed" && [spell_damage_+%] >= "1" Edit: nvm, I must have misread what Delamonica had written, its the same thing basically. Edited May 18, 2014 by bbones Quote Share this post Link to post Share on other sites
claustro 0 Report post Posted May 18, 2014 Thank you very much guys , great suggestions I'll make a try. A. Quote Share this post Link to post Share on other sites