I've been trying to figure out how to create a custom loot rule to keep any item that is lvl 69 or below (at lvl 70). Basically so I can grab any items that might be useful for alts. However, no matter what I seem to try, not loot rules are working. Maybe someone can give me an idea of what I'm doing wrong. Unless it's not added in demonbuddy in which case, why not, and can it be? Now that rare items are the only things you can trade, this has decent value to me and probably others. I've never asked for something to be added to this program that I've paid for twice now, maybe a dev can throw me a bone if this isn't already implemented.
What I've actually tried with no luck, this is added in the rare.dis file that i'm currently using.
What I've actually tried with no luck, this is added in the rare.dis file that i'm currently using.
Code:
[QUALITY] == "Rare" && [BASETYPE] == "Weapon" # [LEVEL] <= 69
[QUALITY] == "Rare" && [BASETYPE] == "Weapon" # ([LEVEL] <= 69)
[QUALITY] == "Rare" && [BASETYPE] == "Weapon" && [LEVEL] <= 69 # True
[QUALITY] == "Rare" && [TYPE] == "Bow" # [LEVEL] <= 69
[QUALITY] == "Rare" && [TYPE] == "Bow" # ([LEVEL] <= 69)
[QUALITY] == "Rare" && [TYPE] == "Bow" && [LEVEL] <= 69 # True
Last edited:






