What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

How to make the bot pickup certain items?

Phildalt

New Member
Joined
Jan 18, 2013
Messages
104
Reaction score
0
So, as the title says, how do I make the bot pickup only certain items? I only want him to pickup ilvl63 gloves, ilvl63 weapons, all jewelry and all legendaries...

Thanks for any help.
 
And how can I find one? I tried looking for something similar but I couldn't find any... It's just the basic one by darkfriend77 and it's chinese to me O_O
 
trinity config - items - select 'file based rules' in the drop-down list, and put this in Plugins\GilesTrinity\ItemRules\Rules\soft\pickup.dis (assuming that 'soft' rules are selected):
[QUALITY] == "Legendary"

[QUALITY] == "Rare" && [LEVEL] == 63 && [BASETYPE] == "Weapon"
[QUALITY] == "Rare" && [LEVEL] == 63 && [BASETYPE] == "Armor" && [TYPE] == "Gloves"
[QUALITY] == "Rare" && [BASETYPE] == "Jewelry"
[QUALITY] == "Rare" -> [IGNORE]

[QUALITY] == "Magic" -> [IGNORE]
 
Is there something else besides "[TYPE]" to design a certain weapon and not a base weapon? Like for example to ignore "Desolator Wand" and the 2 handed bows and the 2 handed crossbows.

Thanks a lot seriously!
 
sure :) read Plugins\GilesTrinity\ItemRules\ItemRules2.txt for complete list

for example, if you want to pick up only ilvl 63 1h weapons:
[QUALITY] == "Rare" && [LEVEL] == 63 && [BASETYPE] == "Weapon" && [TWOHAND] == false
 
Okay awesome bro! Thanks a lot seriously. You helped me a bunch :D
 
FAndrey, just looking at your code, this might help me... Are there no quotation marks around True or False statements?
 
So here's my pickup rule now:

[QUALITY] == "Legendary"

[QUALITY] == "Rare" && [LEVEL] == 63 && [BASETYPE] == "Weapon" && [TWOHAND] == false

[QUALITY] == "Rare" && [LEVEL] == 63 && [BASETYPE] == "Weapon" && [TYPE] == "Wand" || "Dagger" || "HandCrossbow" -> [IGNORE]

[QUALITY] == "Rare" && [LEVEL] == 63 && [BASETYPE] == "Armor" && [TYPE] == "Gloves" || "Shoulder" || "Bracer"

[QUALITY] == "Rare" && [BASETYPE] == "Jewelry"

[QUALITY] == "Rare" -> [IGNORE]

[QUALITY] == "Magic" -> [IGNORE]

I just don't understand the "[QUALITY] == "Rare" -> [IGNORE]". Won't that make the bot unable to loot rares? For the rest, will it work? I'll try it out anyway but thanks for the help.
 
Nope it doesn't work :( It still loots wands, daggers, handcrossbows and in a few hours it looted 1 pair of gloves...

Thanks for the help :S
 
[QUALITY] == "Rare" && [LEVEL] == 63 && [BASETYPE] == "Weapon" && ([TYPE] == "Wand" || [TYPE] == "Dagger" || [TYPE] == "HandCrossbow") -> [IGNORE]

I think this is correct
 
Back
Top